The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #5 (permalink)  
Old 08-29-2008
Danish Shakil Danish Shakil is offline
Registered User
  
 

Join Date: Oct 2007
Posts: 35
Code:
$cat test.sh
#/usr/sbin/ksh
set -x
touch list.txt 
rm list.txt
To run this code it give me below output which is not required, how can i remove them.

Quote:
$./test.sh
++ touch list.txt
++ rm list.txt