Skip to content

Instantly share code, notes, and snippets.

@ashleyconnor
Last active October 28, 2024 02:35
Show Gist options
  • Select an option

  • Save ashleyconnor/e26a11a8af6f5b565de4373d2db87c56 to your computer and use it in GitHub Desktop.

Select an option

Save ashleyconnor/e26a11a8af6f5b565de4373d2db87c56 to your computer and use it in GitHub Desktop.

Revisions

  1. ashleyconnor revised this gist Oct 28, 2024. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion unrar.sh
    Original file line number Diff line number Diff line change
    @@ -1 +1 @@
    docker run --rm -v "$PWD":/files linuxserver/unrar /usr/bin/unrar-alpine e -r /files/$(ls *.rar)
    docker run --rm -v "$PWD":/data linuxserver/unrar /usr/bin/unrar-alpine e -r /data/$(ls *.rar) /data/
  2. ashleyconnor revised this gist Oct 28, 2024. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion unrar.sh
    Original file line number Diff line number Diff line change
    @@ -1 +1 @@
    docker run --rm -v "$PWD":/files maxcnunes/unrar:latest unrar e -r /files/*.rar
    docker run --rm -v "$PWD":/files linuxserver/unrar /usr/bin/unrar-alpine e -r /files/$(ls *.rar)
  3. ashleyconnor revised this gist Oct 26, 2024. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion unrar.sh
    Original file line number Diff line number Diff line change
    @@ -1 +1 @@
    docker run --rm -v "$PWD":/files maxcnunes/unrar:latest sh -c 'for file in /files/*.rar; do unrar e -r "$file"; done'
    docker run --rm -v "$PWD":/files maxcnunes/unrar:latest unrar e -r /files/*.rar
  4. ashleyconnor created this gist Oct 26, 2024.
    1 change: 1 addition & 0 deletions unrar.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    docker run --rm -v "$PWD":/files maxcnunes/unrar:latest sh -c 'for file in /files/*.rar; do unrar e -r "$file"; done'