Bookmark the directory path.
$ cargo install --path .
USAGE:
bookmark [NAME] [SUBCOMMAND]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
ARGS:
<NAME> get bookmark by name.
SUBCOMMANDS:
add add directory to bookmark
help Prints this message or the help of the given subcommand(s)
remove remove bookmark
$HOME/.cache/bm-bookmark
function bm
set length (count $argv)
if test $length -eq 0
bookmark
else if test $length -eq 1; and test $argv[1] != "-h"; and test $argv[1] != "--help"; and test $argv[1] != "help"; and test $argv[1] != "-V"; and test $argv[1] != "--version"
cd (bookmark $argv)
else
bookmark $argv
end
end