Command line utility to bookmark interesting paths in filesystems. The tool allows to assign a short name (alias) to the path, and query for paths using aliases.
This tool is made to be used with shell aliases/functions. Currently bash
and fish
shells are supported.
You can either use binaries from Release page or build it from the source code.
Requirements:
To build and install binary:
$ cargo build --release
$ cp target/release/skoczek $HOME/.local/bin
Where $HOME/.local/bin
is a path visible in your PATH
.
Currently there are two shells supported: fish
and bash
.
To install:
mkdir -p config/fish/completions
mkdir -p config/fish/functions
cp shell/fish/completions/*.fish ~/.config/fish/completions
cp shell/fish/functions/*.fish ~/.config/fish/functions
This should make:
j
function to be availablej
arguments completion to be availableskoczek
arguments completion to be available
To install:
mkdir -p $HOME/.skoczek
cp shell/bash/*.sh $HOME/.skoczek/
Then add the following lines somewhere in ~/.bashrc
or other file loaded by bash
when starting:
if [ -f ~/.skoczek/functions.sh ]; then
source ~/.skoczek/functions.sh
fi
if [ -f ~/.skoczek/functions.sh ]; then
source ~/.skoczek/completions.sh
fi
Typical workflow is as follow:
- Assign a name to a directory
- Assign optional "on enter" commands
- Make that directory a default one
- Go to the directory using its label
Commands:
# Step 1a: Assign label 'gapik' to a directory '~/Dev/Rust/gapik'
skoczek set gapik ~/Dev/Rust/gapik
# Step 1b: Assign label 'gapik' to a current directory
~/Dev/Rust/gapik
skoczek set gapik
# Step 2: Add "on enter" commands
skoczek command gapik -s "clear; cat TODO.md"
# Step 3: Make 'gapik' a default project
skoczek default gapik
# Step 4a: Go to directory with a label 'gapik'
j gapik
# executed commands:
# cd ~/Dev/Rust/gapik
# clear
# cat TODO.md
# Step 4b: Or go to directory behind a default label
j
Some other commands:
List labels with paths:
$ skoczek ls -p | column -t
actix /home/marcin/Dev/Rust/actix-hello
dareczek /home/marcin/DareczekViking
dotfiles /home/marcin/dotfiles
gapik /home/marcin/Dev/Rust/gapik
home /home/marcin
skoczek /home/marcin/Dev/Rust/skoczek
Get path of a label:
$ skoczek get gapik
/home/marcin/Dev/Rust/gapik
Skoczek is also able to store paths to remote hosts:
# Step 1: Assign label 'malinka.dev' to '/home/ubuntu/dev' on host 'malinka'
skoczek set malinka.dev /home/ubuntu/dev -r malinka
# Note: malinka must be a name available to ssh (so ssh malinka connects to a host)
# Step 4: SSH to a path on remote machine behind label 'malinka.dev'
j malinka.dev
# executed commands:
# ssh -t malinka "cd /home/ubuntu/dev && \$SHELL -i"
Currently "on enter" commands are not supported by remote paths - mostly because I couldn't
find a proper way to call commands like source venv/bin/active
on remote machine without venv not being dropped after $SHELL -i
call.
To get list of remote paths:
# Only remote paths:
$ skoczek ls -pr | sort | column -t
malinka.dev /home/ubuntu/dev malinka
malinka.home /home/ubuntu malinka
# Both remote and local paths:
$ skoczek ls -ap | sort | column -t
actix /home/marcin/Dev/Rust/actix-hello
dareczek /home/marcin/DareczekViking
dotfiles /home/marcin/dotfiles
gapik /home/marcin/Dev/Rust/gapik
home /home/marcin
malinka.dev /home/ubuntu/dev malinka
malinka.home /home/ubuntu malinka
skoczek /home/marcin/Dev/Rust/skoczek
To get more features, run help command:
skoczek help
To get options for each sub-commands, call either:
skoczek help subcommand
skoczek subcommand -h