Skip to content

Instantly share code, notes, and snippets.

@ialert
Created October 30, 2016 12:31
Show Gist options
  • Save ialert/11c2856c5655f7c75653210f422b067f to your computer and use it in GitHub Desktop.
Save ialert/11c2856c5655f7c75653210f422b067f to your computer and use it in GitHub Desktop.
Сreate 7z archive for all directories in current folder
#!/bin/bash
SAVEIFS=$IFS
IFS=$(echo -en "\n\b")
command="ls -l | grep "^d""
for i in $(ls -d */);
do
dir=$PWD/${i%%/}
cd "$dir" && 7z a -mx5 "../${i%%/}.7z"
cd ..
done
IFS=$SAVEIFS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment