fastscript.sh 182 B

1234567891011
  1. #!/bin/bash
  2. set -eu
  3. topdir=`pwd`
  4. buildir='~/cs350-os161/os161-1.99'
  5. eval cd $buildir/kern/compile/ASST$1
  6. bmake depend
  7. bmake
  8. bmake install
  9. echo "SUCCESS!!!!!!!!!!"
  10. echo ""
  11. cd $topdir