Archives for: April 2010, 09
Heavy duty protection for my cell phone
April 9th, 2010Got my Otterbox Defender Case here the other day. Superb protection for my phone, makes it waaaay more shock resistant, and also makes it water resistant. Note - not waterproof, just water resistant, but it cover my needs. I have a waterproof bag for mom… more »
How to exclude files when using ls
April 9th, 2010Had a directory with > 150 *.properties-files and needed to check if there where any files not ending with .properties. ls lists all the files, combine it with grep and you are saved.
# See all files ending in .html
ls | grep "\.html$"
# see all… more »