cs107-lecture-examples

Example codes used during Harvard CS107 lectures
git clone https://git.0xfab.ch/cs107-lecture-examples.git
Log | Files | Refs | README | LICENSE

this_command_exists_locally (230B)


      1 #!/usr/bin/env bash
      2 # File       : this_command_exists_locally
      3 # Description: Simple scripted command (not in PATH environment variable)
      4 # Copyright 2022 Harvard University. All Rights Reserved.
      5 echo "You have executed $0"
      6 exit 0