diff --git a/bin/unzip_all b/bin/unzip_all new file mode 100755 index 0000000..5110961 --- /dev/null +++ b/bin/unzip_all @@ -0,0 +1,11 @@ +#!/bin/bash + +find . -type f -name '*.zip' -exec sh -c ' + for file do + echo "$file" + zipdir=$(basename "$file" .zip) + #echo "$zipdir $file" + unzip -d "$zipdir" "$file" + read line