Last active
October 28, 2024 02:35
-
-
Save ashleyconnor/e26a11a8af6f5b565de4373d2db87c56 to your computer and use it in GitHub Desktop.
Revisions
-
ashleyconnor revised this gist
Oct 28, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ docker run --rm -v "$PWD":/data linuxserver/unrar /usr/bin/unrar-alpine e -r /data/$(ls *.rar) /data/ -
ashleyconnor revised this gist
Oct 28, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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) -
ashleyconnor revised this gist
Oct 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 -
ashleyconnor created this gist
Oct 26, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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'