Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
How to untar all tar files in a directory
!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