Unix Solaris 9 Help...

If you touch your software enough does it become hardware?

Moderator: Forum Moderators

Post Reply
amblin
Zombie Spanger
Zombie Spanger
Posts: 2663
Joined: October 22nd, 2004, 11:50

Unix Solaris 9 Help...

Post by amblin »

.
Last edited by amblin on May 5th, 2014, 19:28, edited 1 time in total.
FatherJack
Site Owner
Site Owner
Posts: 9597
Joined: May 16th, 2005, 15:31
Location: Coventry, UK
Contact:

Post by FatherJack »

Code: Select all

man rm
Specifically

Code: Select all

rm -r directory_name_of_sensative_datas
amblin
Zombie Spanger
Zombie Spanger
Posts: 2663
Joined: October 22nd, 2004, 11:50

Post by amblin »

.
Last edited by amblin on May 5th, 2014, 19:26, edited 1 time in total.
spoodie
Site Moderator
Site Moderator
Posts: 9246
Joined: February 6th, 2005, 16:49
Location: Essex, UK

Post 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.
Post Reply