Setting Echo Off

Hi

How to set the ECHO off in shell scripts so that the default output will be hidden.

Sound like BASIC :wink:
You need to send stdout to /dev/null

echo "test" 1>/dev/null

To set it for the whole script, put in this somewhere at the beginning

exec 1>/dev/null