up vote 0 down vote favorite
1
share [g+] share [fb]

I just start using Unix and terminal, and find myself constantly typing searches for individual unix command references. I'm wondering if you guys had any specific sites that you use for most of your reference that I could just bookmark and search. Figure it could possibly save some time.

link|improve this question
feedback

migrated from stackoverflow.com Sep 20 '09 at 22:35

This question came from our site for professional and enthusiast programmers.

8 Answers

I always just Google for

man whatever

and the first hit is almost always the appropriate manual page.

link|improve this answer
5  
Why don't use just use the man on your machine? – Pascal Thivent Sep 20 '09 at 22:44
'apropos' is a more effective alternative IMO... – Richard Marquez Sep 21 '09 at 3:08
feedback

Check out commandlinefu

link|improve this answer
feedback

Linux Man Pages online is a great reference. TLDP.org is also excellent, not only do they list the commands but many examples on how to use them.

link|improve this answer
feedback

I myself use these 2 sites:

http://www.math.uic.edu/

http://www.oreillynet.com/

link|improve this answer
but you must notice that when you want use these site you must have a little knowledge about command to find it easily. – Am1rr3zA Sep 20 '09 at 23:31
feedback

This site is a decent command line reference for Linux, Mac OS X, PowerShell, Windows XP, SQL Server, and Oracle:

SS64

link|improve this answer
feedback

This is very comprehensive: Unix/Linux command overview

link|improve this answer
feedback

An easy and fast solution solution to get information about a command is to use the local information.

man <command>

And if you don't know the command the command, you could search for it using

man -f <keyword>

or it's equivalent

whatis <keyword>
link|improve this answer
feedback

This website covers a pretty good range. It's a bit slow, and maybe too gentle, but good for starting from scratch: http://www.ee.surrey.ac.uk/Teaching/Unix/

For sed, I like this one: http://www.grymoire.com/Unix/Sed.html

(The rest of his site has lots more: http://www.grymoire.com/Unix/)

For find, here's a start: http://content.hccfl.edu/pollock/Unix/FindCmd.htm

It's a dead-tree thing, but I also highly recommend The Linux Phrasebook by Scott Granneman.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown