====== Random Useful Links / Future Entries ====== Useful tidbits, recipes and cheatsheets * [[http://blog.mypapit.net/2007/10/how-to-recover-photo-files-from-sd-card-mmc-with-photorec.html|How to Recover photo files from SD Card / MMC with PhotoRec]] * In Debian/Ubuntu part of package ''testdisk'' * [[http://he.fi/bchunk/|bchunk]] handling bin/cue files in linux * [[http://chall32.blogspot.com/2010/04/when-all-else-fails-kon-boot.html|When All Else Fails, Kon-Boot]] Bypass Windows/Linux login * SED voodoo * [[http://sed.sourceforge.net/#docs|collection of useful SED docs]] * [[http://sed.sourceforge.net/local/docs/emulating_unix.txt|SED emulating UNIX commands]] * 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 * References: * [[http://www.computerhope.com/forhlp.htm]] * [[http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/for.mspx?mfr=true]]