A helper for remembering useful shell commands.
Project description
xxcmd
xx
is a Linux shell command. xx
remembers other shell commands, so you don't have to.
Installation
Requires Python 3. Installation is simple using pip
.
On Ubuntu:
sudo pip3 install xxcmd
On Arch:
sudo pip install xxcmd
Or remove sudo
if you want to install just for the current user and you have pip's local bin on your PATH.
Basic Usage Examples
Using xx
is pretty simple. You build up a database of useful commands, and search and execute them whenever you like.
Adding Commands
Commands are added to the database with:
xx -a [label] <command>
Add a very simple command top
. Not very useful as the command is already short and easy to remember.
xx -a top
Add the du
command to display size of all files and directories in the current directory.
xx -a du --max-depth=1 -h .
Add the same command but with a friendly (searchable) label:
xx -a [File Size] du --max-depth=1 -h .
Adding our favourite ssh command:
xx -a [SSH Best Host] ssh -i ~/.ssh/mykey.pem me@myhost.com
Browse and Search Commands Interactively
Run xx
with no options to enter the interactive UI.
xx
Fast search and execute
xx
can search for matching commands and if only one match is found it will be immediately executed. To run the command we just added we could search for "du":
xx du
Or to run it by searching for a partial match of the label we added:
xx size
We could immediately ssh connect with:
xx best
Interactive UI
Invoking xx
without options will open the interactive UI. Presenting a list of all commands with an interactive search.
Keys:
- UP/DOWN arrow keys - navigate the list of commands.
- DELETE - remove the currently selected command
- RETURN - execute the currently selected command
- ESCAPE - exit
- F1 or CTRL+E - Edit the label of the currently selected item
- Any other key press is added to the interactive search to filter the command list.
Further Usage
usage: xx [-h] [-a ...] [-i URL] [-l] [-t] [-v] [cmd]
positional arguments:
cmd Search for a matching command and run it
immediately.
optional arguments:
-h, --help Show this help message and exit.
-a ..., --add ... Add the given command to the database.
Command may begin with a label enclosed in
square brackets [label] <cmd>.
-b, --no-border Don't display a window border.
-i URL, --import-url URL
Import a command database from the given URL.
Merge into existing database.
-l, --list Print all commands in the database.
-n, --no-echo Don't echo the command to the terminal prior
to execution.
-p PADDING, --label-padding PADDING
Add extra padding between labels and commands.
-t, --no-labels Don't display command labels.
-v, --version Display program version.
Configuration
In addition to the command line switches a configuration file can be used. The file named .xxcmdrc
in the current users home directory is loaded if present.
An example file:
[xxcmd]
echo-commands = no
show-labels = yes
align-commands = yes
draw-window-border = yes
label-padding = 6
Command line switches take precedence over configuration file options.
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
File details
Details for the file xxcmd-0.5.0.tar.gz
.
File metadata
- Download URL: xxcmd-0.5.0.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7a5ce8c240e19e8198a0372e7085e0fd36940795c760a093df5ba264d2d5df5 |
|
MD5 | 420c5232726687787fb009389bddb451 |
|
BLAKE2b-256 | d372d61c86aee07113505d13ab2ad4c88e902a63999689b587ab51a984687e7d |
File details
Details for the file xxcmd-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: xxcmd-0.5.0-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 937026342bd89408fd0457f9ae1e8fb1c2ed594c0e2c8569125ace6ac7893981 |
|
MD5 | 1d9c4d722d50166b079cf35bda50a2c0 |
|
BLAKE2b-256 | 31d9f6714ac146c5efa0303291e1b89cff4d80c1fe33820bef623067d513401a |