Renaming package to ShadowArch to follow /wiki/Design_Principles; improved packing; development sync to current state -- massive overhaul
This commit is contained in:
12
UserScripts/compress-all
Executable file
12
UserScripts/compress-all
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
export IFS="
|
||||
"
|
||||
|
||||
for i in $(find "$PWD" -type d); do
|
||||
cd "$i";
|
||||
for j in $(find . -maxdepth 1 -type f); do
|
||||
echo $i/$j
|
||||
gzip "$j";
|
||||
done
|
||||
done
|
Reference in New Issue
Block a user