🌀 options for Bash.
Project description
🌀 blue-options
🌀 blue_options implements an options argument for Bash.
here is an example use of an options in the vancouver-watching 🌈 ingest command:
> @help vanwatch ingest
vanwatch \
ingest \
[area=<area>,count=<-1>,~download,dryrun,~upload] \
[-|<object-name>] \
[process,count=<-1>,~download,dryrun,gif,model=<model-id>,publish,~upload] \
[--detect_objects 0] \
[--overwrite 1] \
[--verbose 1]
this command takes in an options, an object, and args. an options is a string representation of a dictionary, such as,
area=<vancouver>,~batch,count=<-1>,dryrun,gif,model=<model-id>,~process,publish,~upload
which is equivalent, in json notation, to,
{
"area": "vancouver",
"batch": false,
"count": -1,
"dryrun": true,
"gif": true,
"model": "<model-id>",
"process": false,
"publish": true,
"upload": false,
}
for more refer to 🔻 giza.
installation
pip install blue_options
add this line to your ~/.bash_profile or ~/.bashrc,
source $(python -m blue_options locate)/.bash/blue_options.sh
usage
let your function receive an options argument, then parse it with abcli_options and abcli_options_int.
function func() {
local options=$1
local var=$(abcli_options "$options" var default)
local key=$(abcli_options_int "$options" key 0)
[[ "$key" == 1 ]] &&
echo "var=$var"
}
example 1
from reddit
How can I automate these tree commands I frequently need to type out? I would like to run:
git add .
git commit -m "Initial "commit"
git push
I got bored of typing them out each time. Can I make an alias or something like "gc" (for git commit). The commit message is always the same "Initial commit".
first, install blue-options. this will also install blueness.
pip install blue_options
then, copy example1.sh to your machine and add this line to the end of your bash_profile,
source <path/to/example1.sh>
now, you have access to the @git super command. here is how it works.
@git helpshows usage instructions (see below).@git commitruns the three commands. you can customize the message by running@git commit <message>. you can also avoid the push by running@git commit <message> ~push.- for any
<task>other thancommit,@git <task> <args>runsgit <task> <args>.
> @git help
@git commit [<message>] \
~push
. git commit with <message> and push.
@git <command>
. git <command>.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file blue_options-4.189.1.tar.gz.
File metadata
- Download URL: blue_options-4.189.1.tar.gz
- Upload date:
- Size: 28.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6f3d7510f7caca3366826ab1ead57241df71bc58f266aba598c55c294efd698
|
|
| MD5 |
21692a3ba50d2f76ecbd79037ee06992
|
|
| BLAKE2b-256 |
1024b6ddde047b8fe5e83c57ac3eb7e38c1a9b8df14ba44148865e160b271259
|
File details
Details for the file blue_options-4.189.1-py3-none-any.whl.
File metadata
- Download URL: blue_options-4.189.1-py3-none-any.whl
- Upload date:
- Size: 41.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3607aa3a45f594b53012a7565c7ea1c44171e4a26c3870e6fbcbafdea4562ace
|
|
| MD5 |
87f6dc68cb5ec3ea808384e8c2b049e4
|
|
| BLAKE2b-256 |
6be8e2a4b41fa9878bd4cf56049c53ffc503217c3449fe9667d44e03939964fd
|