Changeset 831
- Timestamp:
- Nov 10, 2011 2:44:00 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sans/utils/bt5/scripts/startprogs
r830 r831 6 6 while [ "$loopvar" != 1 ]; do 7 7 read -p "Do you want to copy default buffers (overwriting any that exist)? (y/n):" 8 if [ $REPLY == "y" ]; then8 if [ $REPLY == "y" -o $REPLY == "Y" ]; then 9 9 echo "Copying default buffers - Overwriting exisitng ones..." 10 10 cp $HOME/RunTemplates/* . 11 11 loopvar=1 12 elif [ $REPLY == "Y" ]; then 13 echo "Copying default buffers - Overwriting existing ones..." 14 cp $HOME/RunTemplates/* . 15 loopvar=1 16 elif [ $REPLY == "n" ]; then 12 elif [ $REPLY == "n" -o $REPLY == "N" ]; then 17 13 echo "NOT Copying default buffers - using existing ones..." 18 loopvar=1 19 elif [ $REPLY == "N" ]; then 20 echo "NOT Copying default buffers - using existing ones..." 14 echo "Copying RESETBEAMPOS.COM" 15 cp $HOME/RunTemplates/*.COM . 21 16 loopvar=1 22 17 else … … 27 22 28 23 #Start ICP and ICP Log 29 echo 'Starting ICP...' 30 /usr/bin/gnome-terminal --geometry=77x20+3-25 --hide-menubar --window-with-profile=ICP -e icp & 31 /usr/bin/gnome-terminal --geometry=77x20+642-25 --hide-menubar --window-with-profile=ICPLog & 24 #echo 'Starting ICP...' 25 #/usr/bin/gnome-terminal --geometry=77x20+3-25 --hide-menubar --window-with-profile=ICP -e icp & 26 #/usr/bin/gnome-terminal --geometry=77x20+642-25 --hide-menubar --window-with-profile=ICPLog & 27 $HOME/bin/doicpwindows 32 28 33 29 #Start prepare
Note: See TracChangeset
for help on using the changeset viewer.