3 lines
76 B
Bash
3 lines
76 B
Bash
|
|
output=`expr \`echo hi | wc -c\` - 1`
|
||
|
|
output=$(expr $(echo hi | wc -c) - 1)
|