Created
February 15, 2018 16:40
-
-
Save uprego/a6bf1e93acc44b0309af215c28cf7ae1 to your computer and use it in GitHub Desktop.
compress and remove
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if test $# -ne 1 | |
then | |
echo 'must receive exactly one argument' | |
exit 1 | |
fi | |
tar czvf "${1}.tar.gz" "${1}" && rm -fv "${1}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment