nixos-config/modules/home/scripts/scripts/compress.sh
2024-01-13 15:37:46 +01:00

10 lines
201 B
Bash
Executable file

#!/usr/bin/env bash
if (( $# == 1 )) then
# echo -ne "Archive name: "
# read name
# tar -cvzf "$name.tar.gz" $1
tar -cvzf "$1.tar.gz" $1
else
echo "Wrong number of arguments..."
fi