This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo "script will launch in background" | |
| echo "cat /b1n.log to see progress" | |
| LOG="/b1n.log" | |
| # the log file we will be using | |
| echo "*** $(date) script begin ***" > $LOG | |
| log() { | |
| echo "$*" >> $LOG |