1 / 18

Shell script – part 2

Shell script – part 2. CS 302. Special shell variable $0 .. $9. Positional parameters or command line arguments For example , a script myscript take 2 arguments , foo and bar Using special variable, you can access your script and any parameters it has. myscript $0 foo $1 Bar $2.

tyrone
Télécharger la présentation

Shell script – part 2

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Shell script – part 2 CS 302

  2. Special shell variable $0 .. $9 • Positional parameters or command line arguments • For example , a script myscript take 2 arguments , foo and bar • Using special variable, you can access your script and any parameters it has. myscript $0 foo$1 Bar$2 $#tells you how many parameter your script was given

  3. If condition • if condition is used for decision making in shell script, If given condition is true then command1 is executed. • Syntax: • if condition • then • command1... • fi

  4. test expression or [ expr ] Is used to see if an expression is true Syntax: test expression OR [ expression ] • Run it as follows: • sh script.txt 3

  5. test expression or [ expr ]

  6. test expression or [ expr ]

  7. test expression or [ expr ]

  8. If .. else .. fi • If given condition is true then command1 is executed otherwise command2 is executed. • Syntax: • if condition • then • command1 • else • if condition is not true then execute all commands up to fi • fi

  9. Example (1) if [ $# -eq 0 ] then echo " Enter one argument “ exit 1 else echo " The first argument is $1 " fi

  10. Class exercise (1) • Write a Script to see whether argument is positive or negative. First, you should ensure that a user enter an argument , if not exist and print this message “You must give/supply one integers”

  11. # Script to see whether argument is positive or negativeif [ $# -eq 0 ]thenecho “You must give/supply one integer"exit 1fi if test $1 -ge 0thenecho "$1 number is positive"elseecho "$1 number is negative"fi

  12. Nested if-else-fi

  13. Multilevel if-then-else Syntax: if condition then condition is zero (true - 0) execute all commands up to elif statement elif condition1 then condition1 is zero (true - 0) execute all commands up to elif statement elif condition2 then condition2 is zero (true - 0) execute all commands up to elif statement else None of the above condtion,condtion1,condtion2 are true (i.e. all of the above nonzero or false) execute all commands up to fi fi

  14. Example :

  15. For loop Syntax: for { variable name } in { list } Do execute one for each item in the list until the list is not finished done or: for ((initial vale ; condition ;)) Do execute one for each item in the list until the list is not finished done

  16. Example

  17. While loop Syntax: while [ condition ] do command1 command2 command3 .. .... done

  18. Example

More Related