dotfiles/termscripts/tar.sh
inigoortega 753c07c665 All scripts are POSIXfied now (I think).
There might be bugs
2019-10-01 16:20:43 +02:00

11 lines
137 B
Bash
Executable file

#!/usr/bin/env sh
if [ $# -eq 1 ]; then
name="$1"
else
name="$(basename "$(pwd)")"
fi
files="$@"
tar -cvzf $name.tar.gz $files