Skip to main content

Easy Launcher For (the) Shell

Project description

Easy Launcher For the Shell (temporary name)

Install from PyPI

pip install elfs

Install from source

python setup.py install --user

Command Line Interface

usage: elfs [options] [command [initial-arguments ...]]

Easy Launcher For (the) Shell

optional arguments:
  -h, --help        show this help message and exit
  -c                Add the command to your spellbook
  -cc name desc rs  Add the command to your spellbook with comments
  -t name template  Add the command to a new script from a template
  -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

Examples

# add a directory
> elfs -d ~/scripts
# run your script from any directory
> elfs myscript.py arg0 arg1 arg2
script output
# file extension is implied only if unambiguous
> elfs myscript arg0 arg1 arg2
script output
# 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 "print spam" "" echo spam
# run the command
> elfs spam
spam
# add a command with replacement
> elfs -cc "more spam" "even more spam" {} echo spam {} eggs {}
> elfs "more spam" bacon spam
spam bacon eggs spam
# command chaining (needs to run in a shell, elfs uses Popen shell=False)
> elfs -cc "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
> elfs -s dble spam
0. bash -c "echo spam && echo spam"
Enter a number to select and run a match, anything else to cancel
Supply any extra arguments (if needed) separated by spaces
>>> 
# add a command using your favourite editor to easily edit your config
> elfs -cc "config" "" "" nano ~/.config/elfs/config.json
# or add a command to easily edit your spellbook (you can move this file)
> elfs -cc "spells" "" "" nano ~/.config/elfs/spellbook.json

Unless using search (and select), the default behaviour is to find a command using exact matches only, and are selected in the following order of precedence

  1. files in order of directory listed in config
  2. names of commands from spellbook in order listed
  3. imply file extension if unambiguous

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

elfs-0.4.6.tar.gz (6.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page