I need to give four lines of gap(Freespace) between two command outputs.
what i did was below
Code:
echo "" >>$LOG_DIR/$LOG_NAME echo "" >>$LOG_DIR/$LOG_NAME echo "" >>$LOG_DIR/$LOG_NAME echo "" >>$LOG_DIR/$LOG_NAME print "***************** LEVEL 2: Truncating Tables: Success: tables Truncated ***********************" >> $LOG/$LOG_NAME echo "" >>$LOG_DIR/$LOG_NAME echo "" >>$LOG_DIR/$LOG_NAME echo "" >>$LOG_DIR/$LOG_NAME echo "" >>$LOG_DIR/$LOG_NAME # Run the load scripts. echo "***************** LEVEL 3: Loading Dupe Check Tables: Success: Dupe Check tables Loaded***********************" >> $LOG/$LOG_NAME
Is there any better way of writing this command to leave multiple lines between two commands.
Please advise...