Quote:
Originally Posted by Amalthia
The part I have trouble with in command line is remembering all the codes.
|
Almost any cli program will tell your the parameters if you type it with none.
If that doesn't work try
command /?
Or
command -?
or
command help
or
command -help
Usually one of those will work.
Of course on Linux/Mac you can hope there is a man page for it.
man cp
Will give you the directions for the cp (copy) command.
BOb