Here a a basic list of commands to help newbies to work with directories on Linux / Unix
1) How to create a folder
mkdir - this command will make/create a directory
e.g. bash# mkdir folder1
(this command will create a folder
2) Removing a folder
rmdir - Remove/deletes a folder
e.g. bash# rmdir folder1
flags :
-r Recursive (very dangerous if you don't know what your doing, i say it cuz of personal experience)
-f Force (removes files that will not be able to be removed with the normal rmdir command)
these flags are to be used in between the after the rmdir e.g. bash# rmdir -r folder1
1) How to create a folder
mkdir - this command will make/create a directory
e.g. bash# mkdir folder1
(this command will create a folder
2) Removing a folder
rmdir - Remove/deletes a folder
e.g. bash# rmdir folder1
flags :
-r Recursive (very dangerous if you don't know what your doing, i say it cuz of personal experience)
-f Force (removes files that will not be able to be removed with the normal rmdir command)
these flags are to be used in between the after the rmdir e.g. bash# rmdir -r folder1