Eg:

 

 
  
  1. #!/bin/bash 
  2.  
  3. #echo 
  4.  
  5. echo –e “This echo’s 3 new lines \n\n\n” 
  6.  
  7. echo “ok” 
  8.  
  9. echo 
  10.  
  11. echo “This echo’s 3 new lines\n\n\n” 
  12.  
  13. echo “The log files have all been done”>mylogfile.txt 

 

Eg:

 
  
  1. #!/bin/bash 
  2. #readmname 
  3. echo -n "First Name:" 
  4. read firstname 
  5. echo -n "Last Name:" 
  6. read lastname subname 
  7. echo -e "your First Name is :$firstname\n" 
  8. echo -e "your Last Name is :$lastname\n" 
  9. echo -e "your Subname is:$subname\n" 

大家学会了吗?有什么不懂的地方可以给我留言。