extensions


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers extensions
# 1  
Old 05-18-2006
extensions

Hey!

Do you guys know of a good site that can explain all the Unix commands... I have been using Unix för almost 6 months but still have probelms with things like -u -U -g -G -R -T bla bla bla bla


thanks!
Dave
# 2  
Old 05-18-2006
You're in luck, you don't even need a site, the instructions ought to exist on your UNIX machine. Indeed nobody could hope to memorize them all Smilie Try "man commandname" to bring up instructions for the command, including what paramaters it uses. Arrow keys or spacebar scrolls through the text, q quits.
# 3  
Old 05-19-2006
you need to have a command efter "man" commando.. t.ex man ls

what i am looking för is just an explenation of all the switches....
there must be a sight that gives a overview of these? Smilie
# 4  
Old 05-19-2006
The switches are specific to each program - that's why we need online manual pages. Some are long "ls --color=tty", some are short "ls -l" and some are even shorter "dd if=/dev/zero". But doesn't mean the same thing to different programs, unless the author of the program has specifically done so.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Mv all files with different extensions to a new name

Hello all! I want to move several files foo.aux foo.log foo.pdf foo.tex to bar_foo.aux bar_foo.pdf bar_foo.tex I am on tcsh % mv foo.* bar_!#:1 is not working. Thank you for your help marek (11 Replies)
Discussion started by: marek
11 Replies

2. Shell Programming and Scripting

Ls without extensions.

Hello everyone. :) I need to write a script and I'm newbie in it. Sorry for my English, I've been learning that amazing language for one year. Task: Write script called 'myls', "wrapper" program call ls in such a way that you could ask it the name of the file without extension, for example:... (1 Reply)
Discussion started by: Sweetheart
1 Replies

3. Shell Programming and Scripting

Checking file extensions

I am trying to store file with certain file extensions to list but having some problems. Here is a part of the code set fryLst = "" set fxtLst = "" foreach f ($AfullNameLst) set fname = $f:r set fext = $f:e if ("$fext" == ".ry") set fryLst = "$fryLst $f" if ("$fext" == ".xt")... (2 Replies)
Discussion started by: kristinu
2 Replies

4. Shell Programming and Scripting

extensions- simple question

hi guys i have this script Doc_=/home/$USER/Documentos/*.odt || .doc but in the code above, only .odt files are selected, all .doc none. What is the error in the code? thanks (13 Replies)
Discussion started by: felito
13 Replies

5. Shell Programming and Scripting

Ignoring certain extensions

Dear Friends, I want to move all the files to temp folder except files having following extensions which are case sensitive. .ttM .Hmt .dMt Request you to guide me to do the same Thank you in advance Anushree (3 Replies)
Discussion started by: anushree.a
3 Replies

6. Shell Programming and Scripting

Creating multiple extensions

Friends I want to automat sending a letter to different persons whose directories are named as 001, 002, 003, 004. To push the same letter to all these directories, I need to name the letter as letter.001, letter.002 like that. Is there any method whereby I get the extension of this letter... (2 Replies)
Discussion started by: chssastry
2 Replies

7. UNIX for Dummies Questions & Answers

Trying to install FP extensions

Hiya all, (Ops sorry - wrong area in 1st post!) I'm getting the error: Cannot find Apache apxs at /usr/sbin/apxs ERROR: Unable to install mod_frontpage dso (Full error below) (I've tried downloading from both www.rtr.com and www.microsoft... - same error) Please advise! ... (0 Replies)
Discussion started by: marty 600
0 Replies

8. UNIX for Dummies Questions & Answers

.gz extensions

What do I use to open a file with a .gz extension? I'm guessing I need some kind of "unzipping" tool. (1 Reply)
Discussion started by: flopper
1 Replies

9. Shell Programming and Scripting

File name extensions

Hello people, I was wondering if anyone could help me? I want to produce a shell script that changes the filename extension on all matching file. E.G. change all files called ‘something.rtf' to ‘something.doc' by giving the command: Changex rtf doc *where ‘Changex' is the name of... (2 Replies)
Discussion started by: thurrock
2 Replies

10. UNIX for Dummies Questions & Answers

Frontpage extensions

Hi everyone. I'm trying to install Frontpage extensions capacity on my web server and getting this error: ./fp_install.sh: line 59: 6763 Segmentation fault /usr/local/frontpage/version${VERSION}/bin/fpsrvadm.exe -o install -p $port $web $config -u $admin $server $chown -m "" ERROR: /... (6 Replies)
Discussion started by: alwayslearningunix
6 Replies
Login or Register to Ask a Question