.gobump img{ border: 5px solid #ccc; float: left; margin: 15px; -webkit-transition: margin 0.5s ease-out; -moz-transition: margin 0.5s ease-out; -o-transition: margin 0.5s ease-out; border-radius: 5px 5px 5px 5px; } .gobump img:hover { margin-top: 2px; }

twitter

Thursday, June 25, 2009

Creating a Directory in Linux

The mkdir (make directory) command is used to create directories.

Example
[ Steve@localhost Steve ] $ mkdir prog-files
[ Steve@localhost Steve ] $ -

The sub-directory, prog-files, is created under the current directory. However, the new directory does not become the current directory. Complete path names can be specified with mkdir.

Example

[ Steve@localhost Steve ] $ mkdir /tmp/prog-files
[ Steve@localhost Steve ] $ _

In the above example, the directory, prog-files, is created under the /tmp directory.

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 

Categories