# Compress a file
gzip FileName
# Compress a file and keep the original file
gzip -c FileNAme > FileName.gz
# Decompress a file
gzip -d FileNAme
# Decompress a file and keep the original file
gzip -d FileName.gz > FileName

# Count the number of files in a folder
find /path/ -type f | wc -l

# Remove folder and files
rm -r FolderName

# Return to the user folder
cd ~

# Run Shell Script
chmod +x batch.sh
./batch.sh
./batch.sh > batch.log
module avail
scp *.* id@auhpc-headnode.augusta.edu:FolderNAme
scp id@auhpc-headnode.augusta.edu:FolderName/*.* ./