mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
9 lines
No EOL
166 B
Bash
Executable file
9 lines
No EOL
166 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if (( $# == 1 )) then
|
|
echo -ne "Archive name: "
|
|
read name
|
|
tar -cvzf "$name.tar.gz" $1
|
|
else
|
|
echo "Wrong number of arguments..."
|
|
fi |