A small cli clipboard for files and directories.
mule add FILES...
mule list
mule copy
mule move
mule pruneRecommended shortcuts:
alias mla='mule add'
alias mlc='mule copy'
alias mlv='mule move'
alias mll='mule list'
alias mlp='mule prune'Collect files from other tools, then act on them later.
find src -type f -name '*.go' | xargs mule add
cd ~/somewhere/at/my/home
mule copyAdd modified files from git:
git ls-files -m | xargs mule addCopies or moves the stored files into the current directory.