Announcement

Collapse
No announcement yet.

simple questions about a command think thats what it is called in bash....

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    simple questions about a command think thats what it is called in bash....

    rm tmp/ Public/ Templates/ -r


    Someone *not saying any names* did this in bash(looked in history)...
    Yes I am new to terminal stuff and at the moment reading up on it...but

    1.Can someone explain to me what this mean?
    What i understand is that to remove something....folders maybe?

    2.If it is folders do you know what abouts was in them? What was in those folders used for? Is it important for something?
    Last edited by Snowhog; Sep 08, 2019, 07:03 PM.
    *im a noob*<br />Computer:<br />laptop - hp mini 210-1041NR<br />Description: Ubuntu 10.10<br />Release:10.10<br />Codename:maverick<br />Kernel:2.6.35-23-generic

    #2
    Re simple questions about a command think thats what it is called in bash....

    Originally posted by Roxxy
    rm tmp/ Public/ Templates/ -r
    First, open a console and type:
    Code:
    man rm
    to learn about the rm command.

    Second, what you typed is most certainly not typed correctly. This is what it 'should' have looked like:

    rm -r /tmp/Public/Templates

    This means remove recursively (everything) in the /tmp/Public/Templates folder.
    Last edited by Snowhog; Sep 08, 2019, 07:03 PM.
    Using Kubuntu Linux since March 23, 2007
    "It is a capital mistake to theorize before one has data." - Sherlock Holmes

    Comment

    Working...
    X