~darrencassar/crib/trunk

« back to all changes in this revision

Viewing changes to populate.sh

  • Committer: root
  • Date: 2010-10-24 00:24:00 UTC
  • Revision ID: root@ubt-20101024002400-6bfsfef7u5kgnv5k
permissions

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
   touch $LOGERR
154
154
fi
155
155
 
156
 
exec 6>&1           # Link file descriptor #6 with stdout.
 
156
#exec 6>&1           # Link file descriptor #6 with stdout.
157
157
                    # Saves stdout.
158
 
exec >> $LOGFILE    # stdout replaced with file $LOGFILE.
 
158
#exec >> $LOGFILE    # stdout replaced with file $LOGFILE.
159
159
 
160
 
exec 7>&2           # Link file descriptor #7 with stderr.
 
160
#exec 7>&2           # Link file descriptor #7 with stderr.
161
161
                    # Saves stderr.
162
 
exec 2> $LOGERR     # stderr replaced with file $LOGERR.
 
162
#exec 2> $LOGERR     # stderr replaced with file $LOGERR.
163
163
 
164
164
 
165
165
##############################################################################