Assignment h1 Unix Commands Due: August 31 @11:59PM EDT Instructions: Using a text editor of your choice, edit this file and answer the following questions. ** Section 1 - Commands ** Give me a command that does the following: 1. lists contents of a directory: (ls) 2. creates a directory: (mkdir) 3. change a directory: (cd) 4. copy a file: (cp) 5. move or rename a file: (mv) 6. remove a file: (rm) 7. clear the screen: (clear) (ctrl L will also work) 8. view information about a command: (man) (cmd --help can also work) 9. program we're using to check out and submit assignments on the CS server: (handin) 10. print current working directory path: (pwd) ** Section 2 - Questions ** 1. What key do you press to execute a command? (Enter) 2. If I just wanted to go to my home directory from wherever I'm at in the file system, what command would I type? (cd or cd ~) 3. If I wanted to make a copy of file a1 and call it a2, what should I type? (cp a1 a2) 4. I need to change my password, what command should I use? (passwd) 5. I want to go to the parent directory(or one directory up from where I currently am), what would I type? (cd ..) (typing .. alone does work in some terminals, but not others) 6. My username is cs25650. Using the terminal, how would I log in to the CS Server? (ssh cs25650@cs.indstate.edu) 7. How would I save a file in nano? (CTRL O)(ctrl x also gives choice to save, but only if you haven't already saved the file since you last modified it) 8. I'd like to see who else is logged on the server, what would I type? (finger or who) (w will also work) (did not take last, as the last command gives a history of logins to the server, not just who is currently logged in) 9. I'd like to get the current date and time, what command should I use? (date) 10. I'm done with everything now, how do I log out of the server? (exit or logout)(ctrl D also triggers the logout cmd)