Skip to content

Instantly share code, notes, and snippets.

@jmorenoamor
Created January 19, 2014 19:37
Show Gist options
  • Save jmorenoamor/8509937 to your computer and use it in GitHub Desktop.
Save jmorenoamor/8509937 to your computer and use it in GitHub Desktop.
Fix files being converted to directories
set -x
for qwer in *.{jpg,gif,png}/;
do
if [[ "$qwer" != "*"* ]] ; then
echo "$qwer";
mv "$qwer" "_BCK${qwer}"
cat "_BCK${qwer}" > "${qwer}"
fi
done
set +x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment