[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [cobalt-users] Anyone know how to rename and copy in SSH
- Subject: RE: [cobalt-users] Anyone know how to rename and copy in SSH
- From: "Boris Vanrillaer" <raq3@xxxxxxxxxxxxx>
- Date: Fri Dec 21 01:02:06 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
Hi Ian,
Sorry if I did not get the question right ...
> I am trying to rename some files within the error folder of
> my Raq using ssh and then copy some files into their original
> places from within my admin area.
To copy files you can use the 'cp' command.
For a full list type 'man cp' ...
To rename files you will use the 'mv' command ...
So 'mv *.log /home/logs' will move all the log files in the current
directory to home/logs
'man' will give you the help of all commands
Some basic unix commands (I did a quick search on www.google.com to grab
you a page) http://www.emba.uvm.edu/CF/basic.html
One last remark ... You better su to a normal user when experimenting
and don't do it with root before you get the hang of it ... Cause rm -r
/* will probably have some nasty side effects.
Greetz
Boris