Answers for "untar multiple archives into thier own folders linux command"

0

untar multiple archives into thier own folders linux command

for file in *.tar.xz; do tar -Jxf "$file"; done
Posted by: Guest on October-05-2020
0

untar multiple archives into thier own folders linux command

for file in *.tar.gz; do tar -zxf "$file"; done
Posted by: Guest on October-05-2020
0

untar multiple archives into thier own folders linux command

for file in *.tar.bz2; do tar -jxf "$file"; done
Posted by: Guest on October-05-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language