Where do I find what commands I can use?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Where do I find what commands I can use?
# 1  
Old 12-12-2001
Data Where do I find what commands I can use?

I am new to this unix thing. I have a macintosh with os X and want to learn how to use the unix terminal. What do I need to get started? Does anyone know some good command lines to get started with? Can I use the terminal to check email and get on the internet etc.....?Smilie
# 2  
Old 12-12-2001
On some systems you can type 'man intro' to get the introductory man page. Not sure if OSX has that one available. You can type 'man <command>' to get help on any command. You might want to check out some of the book recommendations in the FAQ section. None of them are OSX specific, but any book which offers general Unix pointers should help you get started.
# 3  
Old 12-12-2001
Lightbulb bin

Most 'commands' are located in directories with bin in the path. Directories like:
  • /bin
  • /usr/bin
  • /sbin
  • /usr/sbin
  • /usr/local/bin
  • /usr/local/sbin

You might enjoy exploring these directories. You machine will not all all of these, but you should have at least half of them.
# 4  
Old 12-12-2001
A command I found useful when learning was:

man -k keyword

This command accesses man (the manual) using the -k option will search for entries that have your keyword in the description or command - and obviously keyword is where you put in the word.

For example - searching for commands that will let you copy a file....type

man -k copy

This will list heaps of commands and descriptions - then if you find a command in here that you want to use - or find more about type:

man command

Hope this helps.Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Find commands help

hi gurus, I need a example. I am looking for a source code. where I got the keyword "altria_fetch" and also the keyword is present in the file ".pc" files. and it is present in the directory /fast folder. Inside fast there are lot of sub directories present on it. I am not sure how to reach... (8 Replies)
Discussion started by: ramkumar15
8 Replies

2. UNIX for Dummies Questions & Answers

Find process by name and insert commands

I am writing a tcsh script that will open an already-running processs on a system, and give it a command. I want to have something similar to this: http://www.cyberciti.biz/faq/kill-process-in-linux-or-terminate-a-process-in-unix-or-linux-systems/ But I need to be able to find the process and... (5 Replies)
Discussion started by: Adorai
5 Replies

3. UNIX for Advanced & Expert Users

I need help to find some unix commands

Hey everyone, I need some help for some unix commands. - List all processes in the file "ProcessUser.txt" sorted by the users and in the file "ProcessName.txt" sorted by the name of the process. - How much time does the command "ls -alR /" need and compared to that, how much time is... (2 Replies)
Discussion started by: ZOCKER3000
2 Replies

4. UNIX for Dummies Questions & Answers

Find & If commands together

Hi to everybody!! I have a (simple) question but i am newbie with unix and so i need a little help...I am writing a bash script file and i want to put inside this: i have this command " find /usr/bin -name bzip2 -print " that i want to put it in a "if" statement and when it returns true the... (6 Replies)
Discussion started by: orestis7
6 Replies

5. Shell Programming and Scripting

Execute multiple commands in a find

I am checking that a file is older than a reference file that I build with a touch command before processing it. If it is not old enough, I want to sleep for an hour and check again. My problem is if it is old enough to process, I want to exit when I am done, but I cannot find a way to exit... (2 Replies)
Discussion started by: prismtx
2 Replies

6. Shell Programming and Scripting

Need help in find and cp commands

I m using the below command for finding a particular file using grep and then copy it. But the the below command esp the cp is not working find . -name "CurrentCollector*" -exec grep -l '300173680000D1A8' {} \; | xargs cp {} /ednpdtu7/u01/pipe/current_reprocess - It's giving the particular... (5 Replies)
Discussion started by: ali560045
5 Replies

7. Shell Programming and Scripting

find filenames like unix commands

Hi, I need to write a small script to search in some specific directories to check if any file is present with a unix command name... Means if the directory contains any files like cat, vi, grep, find etc i need to list those files into a file. Please help Thanks, D (6 Replies)
Discussion started by: deepakgang
6 Replies

8. UNIX for Dummies Questions & Answers

find and grep commands

I'm having trouble with the following commands i. count the number of lines which end in a 4 letter word grep '{4\}$' bfile <<seems to print out everything abc abc abcd joe joe john bob bill gregory greg greg gregory the grep command prints out the lines with 4 letter words and the... (3 Replies)
Discussion started by: StrengthThaDon
3 Replies

9. UNIX for Dummies Questions & Answers

Unix Find commands

thank you for the help (1 Reply)
Discussion started by: scooter17
1 Replies

10. UNIX for Dummies Questions & Answers

find commands?

what comand do I use to find usefull comands, common comands? or, where on www? if noone knows, then what comand do I use to run a (bin)file? (3 Replies)
Discussion started by: hallrobe
3 Replies
Login or Register to Ask a Question