Random Useful Links / Future Entries

Useful tidbits, recipes and cheatsheets

  • DOS/Windows Batch stuff
    • for + basename
$ for f in *.bmp; do convert "$i" "$(basename "$i" .bmp).png" ; done
equivalent
> for %f in ( *.bmp ) do C:\imagemagick\convert "%f" "%~nf.png" ; done
beware this particular example, convert is a windows command
todo/random_useful_links.txt · Last modified: 2012/03/16 00:26 by Toni Corvera
 
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Noncommercial-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki