Almost, but not quite, entirely unlike aliases
Project description
Enhanced aLiases For Shells (Name subject to change)
Install from PyPI
pip install elfs
Install from source
python setup.py install --user
Enable dynamic tab-completion for fish or xonsh
elfs --reg-fish
elfs --reg-xonsh
Command Line Interface
usage: elfs [options] [command [initial-arguments ...]]
Almost, but not quite, entirely unlike aliases
optional arguments:
-h, --help show this help message and exit
-c name add the command to your spellbook
-cc name desc also add description with command
-ccc name desc rs also add replace-str with command
-d path add a directory path to your config
-e .ext path add an extension and the path to an executable for it
-l, --list list entire collection (or specify: cmd, dir, ext, files)
-s, --search search entire collection for command
-n, --dry-run print command instead of executing it
--version show program's version number and exit
Usage Notes
- Runs on any platform with python 3
- Unless using search (and select), the default behaviour is to find a command using exact matches only, and is selected in the following order of precedence
- files in order of directories listed in config
- names of commands from spellbook in order listed
- imply file extension if possible and unambiguous
- Commands without names (or duplicate names of lower precedence) can only be run via search
- Commands and files with spaces in their names need to be escaped or in quotes
- The first argument (that is not an option for elfs) is treated as the command or filename and all subsequent arguments are passed to the command or file to be executed (except for commands with a replace-str, see example)
- Pipes work as expected, you can pipe into or out from any command or file, however if you try piping into a search, it will interpret that as your selection
Examples
- add a directory
> elfs -d ~/scripts
- run your script from any directory
> elfs myscript.py arg0 arg1 arg2
- file extension is implied only if unambiguous
> elfs myscript arg0 arg1 arg2
- add an extension to run a file with a specific executable
> elfs -e .py /path/to/alternative/env/for/python
- add a command
> elfs -cc spam "echo spam to output 3 times" echo spam spam spam
- run the command
> elfs spam
spam spam spam
- add a command with a replace-str (metavar: rs) and run it
> elfs -ccc menu "even more spam" {} echo spam {} spam {}
> elfs menu bacon eggs
spam bacon spam eggs
- giving fewer arguments causes them to repeat
> elfs menu bacon
spam bacon spam bacon
- and extra arguments are passed along as normal
> elfs menu bacon eggs sausage spam
spam bacon spam eggs sausage spam
- command chaining (needs to run in a shell, elfs uses Popen shell=False)
> elfs -c "double spam" bash -c "echo spam && echo spam"
> elfs "double spam"
spam spam
- see the command without running it (quotes may appear slightly different)
> elfs -n "double spam"
Command: bash -c "echo spam && echo spam"
- list all commands and files
> elfs -l
- search commands and files with fuzzy matches, then optionally select from a list of matches to execute
> elfs -s dble spam
- add a command to quickly edit your config
> elfs -c "config" nano ~/.config/elfs/config.json
- or add a command to edit your spellbook (you can move this file)
> elfs -c "spells" nano ~/.config/elfs/spellbook.json
Add dynamic tab-completion to your scripts
- create completion rules in the following json format
[
{
"expression": "python_expression_for_rule_1",
"completions": ["option1", "option2\thello", "option3\tworld"]
},
{
"expression": "python_expression_for_rule_2",
"completions": ["option1", "option4\toptional description"]
}
]
- where the python expression is evaluated in a namespace with the following variables
- position = current position in the command, where 0 is the current script
- eg.
elfs[None] myscript.py[0] option[1] [2]
- position does not increment until the next space
elfs[None] myscript.py[0] option[1] op[2]
- eg.
- command = command so far, as parsed by shlex
- following the same example with
position=2
,command=["myscript.py", "option", ""]
- and
command=["myscript.py", "option", "op"]
- following the same example with
- eg.
"position == 2 and command[1] in ['option1', 'option2']"
- position = current position in the command, where 0 is the current script
- the completions are shown for every expression that evaluates as true
- the completion rules can be placed in either of the following locations
- inside
file_name.ext.elfs.json
, eg.myscript.py.elfs.json
- or directly enclosed in
file_name.ext
with# TAB-COMPLETION START
and# TAB-COMPLETION END
- inside
# TAB-COMPLETION START
[
...
]
# TAB-COMPLETION END
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
elfs-1.3.0.tar.gz
(9.9 kB
view details)
Built Distribution
elfs-1.3.0-py3-none-any.whl
(10.1 kB
view details)
File details
Details for the file elfs-1.3.0.tar.gz
.
File metadata
- Download URL: elfs-1.3.0.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d06259febe6095001f1fac4c57fdf5c9ac80ffdd74f51833a649399c60c12e0d |
|
MD5 | 123b63d883b75ced449d785cb3a5c5f8 |
|
BLAKE2b-256 | bd03ab0a50641cc682e4bd26cc30bb542ac30ed38a64875765cb34c1a4162370 |
File details
Details for the file elfs-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: elfs-1.3.0-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39929470da82b578508f5ab20a786ccfbb3a7f2accd46b770a9acc05fb14e634 |
|
MD5 | 8bd14299a574d03840e402dce562e60e |
|
BLAKE2b-256 | 9400fdfe0f5946093f5dc127d2441d04abf009ba5abb22cde9311fb60d3dd2fd |