Slide Tutorial - Add to Path

Left
Right
  • Add WEBROOT to execution path
    • C-shell
      set path=($path webroot)
    • Bourne shell (and derivatives)
      PATH=$PATH:webroot
  • This is only necessary if doing partial "makes"
Left
Right
Slide 18