Quote:
I just wanna try how to remove at sarge.
|
Ehh...what exactly does that mean? Removing something (a file, directory, etc.) isn't distro specific.
Quote:
may anyone tell me how to remove software from shell by using commands?
|
Told ya in my previous post: use the 'rm' command for individual files, like 'rm file1 file2 file3'. For directories you have at least two options: 'rm -rf /path/to/directory/directory_name' or, using two succesive commands: 'rm /directory/*' followed by 'rmdir directory'.
You should take care when specifing the path as there can be 'absolute paths', (the ones that begin with '/' and are ment to be searched beginning from the root directory) and 'relative paths' (which don't have a leading '/' and are ment to be found within the current directory).