Archive for the ‘Tips’ tag
List only files (no folders)
Quick note how to list files without directories.
Windows:
dir /a:-d
Linux:
ls -l | grep ^-
Second command should work also in Mac OS X from terminal, but will have to check it just to be sure.
Page navigation on Mac
As newbie Mac OS user I’ve faced problem “where the f**k are page up, page down, etc. keys?”. A little of exploration and here it is (MacBook Pro):
fn + arrow down = page down
fn + arrow up = page up
cmd + arrow down = end
cmd + arrow up = home
fn + backspace = delete (this is quite annoying that on PC I’ve had one button for that)