????????? Linux Deepin ?????????????????? tarball ??????????????????????????????????????????????????????????????????

$ ls
backup1.tar backup2.tar backup3.tar

?????????????????????????????????????

?????????????????????? tar ???梅???tar ?????????????璞�??写?????tar ???? Tape ARchiver ?????????????????????????????????????????????????? tar x myfineonthe.tape??????????? -f ????????? tar ????????????????????????????小??????????????????——??????????????????????????????????????????????????????????????????

tar -x -f backup.tar myfile.txt
# ???????????????????
tar xf backup.tar myfile.txt

??????????????????????????????????????????? backup1.tar backup2.tar backup3.tar ???????????????????????? tar xf *.tar????????????????薪????

$ tar xf *.tar
tar: backup2.tar: Not found in archive
tar: backup3.tar: Not found in archive
tar: Exiting with failure status due to previous errors

??????????????锟�?Shell ????????????? *.tar ?婊�??????????????????

tar xf backup1.tar backup2.tar backup3.tar

???????????????? tar ???梅??????锌???????????????????????????“????????? backup1.tar ?薪???? backup2.tar ?? backup3.tar”??????? backup1.tar ????????????????????????????????谐????

????????????????????????薪????????????伞????????????????? UNIX shell (Bash)?????????????????

for tarname in *.tar; do
tar xf "$tarname"
done

????????????????? for-??????????????睢�??????????????????????????????????????????????????????????????????????????????小?for-???????????????????????斜??械??????????????????斜????????????????

??????????for-???????? *.tar ????????????????????????? tar xf?????????????????????“?????”?????????

??????????????????????????? ZIP????? ZIP ??????????? unzip??????????????????unzip ???????????????? ZIP ?????????????????????????????

for zipfile in *.zip; do
unzip "$zipfile"
done

???????? unzip ?????????????????????????????? shell ???????pattern??????? ZIP ??????????? shell ??????些????????????????????unzip?????? shell???????????? *.zip??

unzip "*.zip"
# ???????????????????????????????????
unzip *.zip