EROGOL serving you good info
Open ~/.bashrc file with your favorite editor and paste below script to the bottom of the file. extract () { if [ -f $1 ] ; then case $1 in *.tar.bz2) tar xvjf $1 ;; *.tar.gz) tar xvzf $1 ;; *.bz2) bunzip2 $1 ;; *.rar) rar x $1 ;; *.gz) gunzip $1 ;; *.tar) tar xvf $1 … Continue reading A bash script for Linux to extract all kind of compressed file from console.
The post A bash script for Linux to extract all kind of compressed file from console. appeared first on A Blog From a Human-engineer-being.