Answers for "tar unzip multiple files"

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.xz; do tar -Jxf "$file"; done
Posted by: Guest on October-05-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language