RosettaCodeData/Task/Execute-a-system-command/UNIX-Shell/execute-a-system-command-5.sh

3 lines
76 B
Bash
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
output=`expr \`echo hi | wc -c\` - 1`
output=$(expr $(echo hi | wc -c) - 1)