Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
if2() {
|
||||
if eval "$1"; then
|
||||
if eval "$2"; then eval "$3"; else eval "$4"; fi
|
||||
else
|
||||
if eval "$2"; then eval "$5"; else eval "$6"; fi
|
||||
fi
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
if2 'test 7 -lt 9' 'test 7 -gt 9' '
|
||||
echo both 1 and 2
|
||||
' '
|
||||
echo 1 but not 2
|
||||
' '
|
||||
echo 2 but not 1
|
||||
' '
|
||||
echo neither 1 nor 2
|
||||
'
|
||||
Loading…
Add table
Add a link
Reference in a new issue