Skip to content

Instantly share code, notes, and snippets.

@sebastiandg7
Created April 9, 2020 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebastiandg7/56ab4af10b43d2143df5a1e532f07eaf to your computer and use it in GitHub Desktop.
Save sebastiandg7/56ab4af10b43d2143df5a1e532f07eaf to your computer and use it in GitHub Desktop.
Compress all folders in current directory in their own RAR file
for folder in */
do
rar a -m5 -r "${folder%/}.rar" "$folder"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment