Bash Scripting - Quoting and Expansion
What does the command substitution syntax
$(date) do in a bash script?$(date) do in a bash script?$() and replaces it with the command's output.$(date)date command outputs the current date and time, so $(date) is replaced by that output.date command and replaces $(date) with its output -> Option B15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions