Guest User

Untitled

a guest
Jun 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.30 KB | None | 0 0
  1. if [ $# -equal 0 ] ;
  2. then
  3.    echo "No parameters, Please, Input a Correct Directory"
  4.    read i
  5.  
  6. else
  7.    i=$1
  8. fi
  9.  
  10. if [ -e $i ] && [ -d $i ] ;
  11. then
  12.    echo "Synchronizing requested folders"
  13.    scp -r $i patelpn@athena.ecs.csus.edu:~/csc60/
  14. else
  15.    echo "Error, Provided Incorrect Directory"
  16. fi
Add Comment
Please, Sign In to add comment