Created
May 20, 2018 02:25
-
-
Save yang-zhang/d81ca49843a69746c93eb58b149b7c98 to your computer and use it in GitHub Desktop.
How to untar all tar files in a directory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!for a in `ls -1 *.tar`; do tar xf $a; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment