webdog / octicons-png

Keynote hates SVGs, convert SVGs to PNGS
The Unlicense
26 stars 4 forks source link

Remove svg extension artifact from filename #5

Closed webdog closed 6 years ago

webdog commented 6 years ago

@trevor-coleman As discussed!

Feel free to put the x11 naming convention in the bash script you're writing.

Heads-up, here's the one-liner I used to change this:

for f in *; do mv "$f" "$(sed 's/.svg//g' <<< "$f")"; done

trevor-coleman commented 6 years ago

Nice. 🙌