linux

User Login

User Name
Password
   
Forgot Password                  Sign Up

What's up ?

We value your feedbacks,ideas and your articles.Please navigate to the following links.

  • Feedback
  • I have an Idea
  • Advertise
  • The Article

    Would you like to post an article on this web site, then please navigaet here to do that.

    Submit an article

    Newletter SignUp

    Please register to receive a Newsletter.

    Register Here

    Linux Multiple Commands

    Linux allows you to enter multiple commands at one time. The only requirement is that you separate the commands with a semicolon.

    Suppose if you want to move a file called "linux.txt" to a directory "linux 1".But directory "linux1" is not created.Then you can use multiple command usage in linux. eg:mkdir linux 1/; mv linux.txt linux 1/

    Running the combination of commands creates the directory and moves the file in one line.