dotfiles/home/dot_config/nnn/plugins/executable_getdrop
2023-09-03 12:16:34 -07:00

8 lines
100 B
Bash
Executable File

#!/usr/bin/env bash
if [ ! -e "$1" ] ; then
git annex get "$1"
else
git annex drop "$1"
fi