You can mention the block of code within "set -x" and "set +x" command. For example :
#!/usr/bin/sh
echo "Welcome"
set -x
echo "Rabindra!"
echo "Nayak"
set +x
echo " to the world!"
#!/usr/bin/sh
echo "Welcome"
set -x
echo "Rabindra!"
echo "Nayak"
set +x
echo " to the world!"
No comments :
Post a Comment