Initial commit...

This commit is contained in:
2021-02-18 17:45:52 -06:00
parent dc3906fa9b
commit 1180e3171f
2159 changed files with 45470 additions and 2 deletions

12
Atom Plugins Made/compress.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
function main() {
for i in `ls`; do
if [[ "${i}" == *".sh"* || "${i}" == *".txt" ]]; then
echo "Shell file";
else
7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on "${i}".7z ./"${i}"
fi
done
}
main

Binary file not shown.