Skip to content

Instantly share code, notes, and snippets.

@alexpwf
alexpwf / clear_name.bash
Created July 27, 2017 12:15
scrypt to rename file import from illustrator in the various folders of android studio.
#! /bin/bash
name="mipmap"
cd "$name-mdpi/"
for i in *mdpi.png; do
mv "$i" "${i/mdpi/}"
done
cd ..
cd "$name-hdpi/"