Quote filename to allow files with spaces
This commit is contained in:
parent
87761558d9
commit
0fc50f0e90
1 changed files with 18 additions and 18 deletions
|
@ -4,25 +4,25 @@
|
||||||
# this creates a new directory in the directory where the compressed file is and dumps the content in it
|
# this creates a new directory in the directory where the compressed file is and dumps the content in it
|
||||||
# for the second way, comment the two lines under the if and place just one '.' in front of the /$1
|
# for the second way, comment the two lines under the if and place just one '.' in front of the /$1
|
||||||
# this just dumps the content of the compressed file in the same directory of the compressed file
|
# this just dumps the content of the compressed file in the same directory of the compressed file
|
||||||
if [ -f $1 ] ; then
|
if [ -f "$1" ] ; then
|
||||||
NAME=${1%.*}
|
NAME=${1%.*}
|
||||||
mkdir $NAME && cd $NAME
|
mkdir "$NAME" && cd "$NAME"
|
||||||
case $1 in
|
case "$1" in
|
||||||
*.tar.bz2) tar xvjf ../$1 ;;
|
*.tar.bz2) tar xvjf ../"$1" ;;
|
||||||
*.tar.gz) tar xvzf ../$1 ;;
|
*.tar.gz) tar xvzf ../"$1" ;;
|
||||||
*.tar.xz) tar xvJf ../$1 ;;
|
*.tar.xz) tar xvJf ../"$1" ;;
|
||||||
*.lzma) unlzma ../$1 ;;
|
*.lzma) unlzma ../"$1" ;;
|
||||||
*.bz2) bunzip2 ../$1 ;;
|
*.bz2) bunzip2 ../"$1" ;;
|
||||||
*.rar) unrar x -ad ../$1 ;;
|
*.rar) unrar x -ad ../"$1" ;;
|
||||||
*.gz) gunzip ../$1 ;;
|
*.gz) gunzip ../"$1" ;;
|
||||||
*.tar) tar xvf ../$1 ;;
|
*.tar) tar xvf ../"$1" ;;
|
||||||
*.tbz2) tar xvjf ../$1 ;;
|
*.tbz2) tar xvjf ../"$1" ;;
|
||||||
*.tgz) tar xvzf ../$1 ;;
|
*.tgz) tar xvzf ../"$1" ;;
|
||||||
*.zip) unzip ../$1 ;;
|
*.zip) unzip ../"$1" ;;
|
||||||
*.Z) uncompress ../$1 ;;
|
*.Z) uncompress ../"$1" ;;
|
||||||
*.7z) 7z x ../$1 ;;
|
*.7z) 7z x ../"$1" ;;
|
||||||
*.xz) unxz ../$1 ;;
|
*.xz) unxz ../"$1" ;;
|
||||||
*.exe) cabextract ../$1 ;;
|
*.exe) cabextract ../"$1" ;;
|
||||||
*) echo "extract: '$1' - unknown archive method" ;;
|
*) echo "extract: '$1' - unknown archive method" ;;
|
||||||
esac
|
esac
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue