Created
January 29, 2010 13:24
-
-
Save zoqaeski/289716 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Moves images into folders based on their dimensions | |
cd ~/wallpapers | |
for image in *; | |
do | |
dims=$(feh -ls $image | cut -f3,4 --output-delimiter=x | sed 's/WIDTHxHEIGHT//') | |
echo $dims | |
mkdir $dims &> /dev/null | |
mv $image $dims | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment