5 examples for unrar

{{ score }}
  # Extract an archive to specified directory. It is important to have a / at the end of the path. 
unrar e  
~
        
{{ score }}
  # Unrar an archive to the current directory 

unrar e 
        
{{ score }}
  # Extract an archive to the current directory, mirroring the archive hierarchy in a directory of the same name.
unrar x 
        
{{ score }}
  Here are commands to extract with wild-cards
unrar x \*rar or unrar x \*part01.rar
        
{{ score }}
  # unrar, ignoring files that already exist (no prompting)
unrar x file.rar -o- OUTPUT_PATH

# unrar, overwriting files that already exist (no prompting)
unrar x file.rar -o+ OUTPUT_PATH