Skip to content

Instantly share code, notes, and snippets.

@zyuzuguldu
Last active June 18, 2016 15:06
Show Gist options
  • Save zyuzuguldu/3d37614c72b24c8f7ef1 to your computer and use it in GitHub Desktop.
Save zyuzuguldu/3d37614c72b24c8f7ef1 to your computer and use it in GitHub Desktop.
unrar
for <var> in <list>
do
command $<var>;
done
# to unrar all rar files
for f in *.rar;do unrar e "$f";rm "$f";done
for f in *.001;do 7z e "$f";done
# to unzip all zip files
for f in *.zip;do unzip "$f";done
for f in *.txt;do mv "$f" /myfolder/;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment