langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
|
|
@ -0,0 +1 @@
|
|||
ls
|
||||
|
|
@ -0,0 +1 @@
|
|||
exec ls
|
||||
|
|
@ -0,0 +1 @@
|
|||
output=`ls`
|
||||
|
|
@ -0,0 +1 @@
|
|||
output=$(ls)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
output=`expr \`echo hi | wc -c\` - 1`
|
||||
output=$(expr $(echo hi | wc -c) - 1)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
echo "Found: `grep 80/tcp /etc/services`"
|
||||
echo "Found: $(grep 80/tcp /etc/services)"
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
ls # run command, return to shell
|
||||
exec ls # replace shell with command
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
set output=( "`grep 80/ /etc/services`" )
|
||||
echo "Line 1: $output[1]"
|
||||
echo "Line 2: $output[2]"
|
||||
Loading…
Add table
Add a link
Reference in a new issue