Bash Scripting - Quoting and Expansion
Consider this script:
What does this script output?
files=$(ls /tmp) count=$(echo "$files" | wc -w) echo $count
What does this script output?
files=$(ls /tmp) count=$(echo "$files" | wc -w) echo $count
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions