Advertisement
Guest User

Untitled

a guest
May 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/bin/bash
  2. mkdir assessments
  3. cd assessments
  4. echo -e "what file would you like to move? \c";
  5. read $file1;
  6. mv /home/test1/$file1 /home/test1/assessments
  7. echo -e "what is another file you would like to move? \c";
  8. read $file2;
  9. mv /home/test1/$file2 /home/test1/assessments
  10.  
  11. echo "File $file1 was moved
  12. File $file2 was moved"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement