Skip to content

Instantly share code, notes, and snippets.

@thinsoldier
Created February 15, 2022 14:51
Show Gist options
  • Save thinsoldier/93b4058b8dbd77b814b22aa51ce359bb to your computer and use it in GitHub Desktop.
Save thinsoldier/93b4058b8dbd77b814b22aa51ce359bb to your computer and use it in GitHub Desktop.
linux bash How do you unrar to a directory with the same name as the archive.
for i in *.rar; do mkdir "${i%%.rar}"; unrar x -r "$i" "${i%%.rar}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment