Can someone explain what this means in a shell script?
while read -r line do if [ "${line#*'Caused By'}" != "$line" ]; then echo "Yes" fi done Can someone explain what this means in a shell script?
while read -r line do if [ "${line#*'Caused By'}" != "$line" ]; then echo "Yes" fi done