Created
October 25, 2017 21:04
-
-
Save Echooff3/e149ac7e24f65a54339f5b3a9aafb3a5 to your computer and use it in GitHub Desktop.
xargs random folder unzip
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 characters
head -200 /dev/urandom | cksum | cut -f1 -d " " | |
find ./ -name "*.zip" -type f -print0 | xargs -0 -I {} sh -c 'unzip {} -d ./$(head -200 /dev/urandom | cksum | cut -f1 -d " ")' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment