6 lines
61 B
Bash
Executable File
6 lines
61 B
Bash
Executable File
#!/bin/bash
|
|
|
|
tar cvf $1.tar $1
|
|
gzip --best $1.tar
|
|
rm $1.tar
|