astrophysics

extracting multiple .tar in a single call

dcember_fifth 2013. 7. 7. 22:29

** extracting multiple .tar in a single call **

kaysoh$ for i in *.gz; do tar -xvf $i; done

if you are using .gz file then replace -xvf with -xzvf.