79492431

Date: 2025-03-07 13:21:15
Score: 1
Natty:
Report link

Echo passes only the data which is separated by whitespaces
For example:

echo $(echo "a   b")
Output : a b

For the above example only a and b will be passed

But if you enclose it with double quotes the whitespaces will be preserved

echo "$(echo "a   b")"
Output : a   b
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vignesh