ShadowArch/Shared/expand-all
2016-11-09 22:25:00 -06:00

9 lines
137 B
Bash
Executable File

#!/bin/bash
for i in $(find "$PWD" -type d); do
cd $i;
for j in $(find . -maxdepth 1 -type f); do
gunzip $j;
done
done