Page 1 of 1

Unix Solaris 9 Help...

Posted: February 13th, 2008, 13:36
by amblin
.

Posted: February 13th, 2008, 13:42
by FatherJack

Code: Select all

man rm
Specifically

Code: Select all

rm -r directory_name_of_sensative_datas

Posted: February 13th, 2008, 13:45
by amblin
.

Posted: February 13th, 2008, 14:05
by spoodie
amblin wrote:rm - remove?

how can I get a print out of the directory structure? That may be helpful when I ask for help on this stuff. thanks jack :)
"rm" is short for remove. The same as ls = list and mv = move.

To get a directory structure change directory to where you want to start from and use this

Code: Select all

find . -type d
Remove "-type d" if you want the files as well or change it to "-type f" if you want the files only.