ShadowArch/UserScripts/expand-all

9 lines
137 B
Plaintext
Raw Normal View History

2016-11-09 22:25:00 -06:00
#!/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