moved tables from unix programming interface book into its own directory
This commit is contained in:
parent
a7e1891218
commit
71091f5647
3 changed files with 0 additions and 0 deletions
15
unix_programming_environment/awk_operators.txt
Normal file
15
unix_programming_environment/awk_operators.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
------------------ Table 4.4 ------------------
|
||||
awk Operators (increasing order of precedence)
|
||||
|
||||
= += -k *= /= %= assignment; v op= expr is v = v op (expr)
|
||||
|| OR: expr1 || expr2 true if either is;
|
||||
expr2 not evaluated if expr1 is true
|
||||
&& AND: expr1 && expr2 true if both are;
|
||||
expr2 not evaluated if expr1 is false
|
||||
! negate value of expression
|
||||
> >= < <= == != ~ !~ relational operators;
|
||||
~ and !~ are match and non-match
|
||||
nothing string concatenation
|
||||
+ - plus, minus
|
||||
* / % multiply, divide, remainder
|
||||
++ -- increment, decrement (prefix or postfix)
|
||||
Loading…
Add table
Add a link
Reference in a new issue