Buck
Searchโฆ
Introduction โก๏ธ
Installation ๐จ๐ฟโ๐ป
Your first bucket
Creating a new bucket โญ๏ธ
Listing your buckets ๐
Executing your bucket ๐ฎ
Powered By
GitBook
Listing your buckets ๐
Let's view our buckets
Checking out your super powers ๐
To list out all your buckets, run :
1
>>
buck --list
Copied!
Or
1
>>
buck -l
Copied!
If you followed the last session ,you should get :
1
>>
Here you go
:
2
โ
3
{
4
"bucket"
:
[
5
{
6
"name"
:
"new"
,
7
"executor"
:
"new"
,
8
"buck_list"
:
[
9
"mkdir quot;
,
10
" cd quot;
,
11
" code ."
12
]
,
13
"description"
:
"this makes a new bucket and opens it in vscode"
14
}
,
15
{}
16
]
17
}
Copied!
buck --list <name>
Let's say, you have created several buckets, going through a long list of commands just to find one is inefficient, instead run :
1
>>
buck --list new
Copied!
You can replace
new
, with whatever the name of the bucket you are looking for is.
Your first bucket - Previous
Creating a new bucket โญ๏ธ
Next - Your first bucket
Executing your bucket ๐ฎ
Last modified
8mo ago
Copy link
Contents
Checking out your super powers ๐
buck --list <name>