dotfiles/home/dot_config/nnn/plugins/executable_getdrop

8 lines
100 B
Plaintext
Raw Permalink Normal View History

2023-09-03 12:16:34 -07:00
#!/usr/bin/env bash
if [ ! -e "$1" ] ; then
git annex get "$1"
else
git annex drop "$1"
fi