Deborah R. Fowler
BASH and continuing with Object Oriented Programming Introduction
Posted on Nov 4 2018Two topics will be covered today:
- Bash
- OOP continued
#!/bin/bashHelpful sites:
This line will identify your file as a script written in bash and if you change the permissions you can run it by typing ./nameOfFile
chmod +x nameOfFile
OR
chmod 755 nameOfFile
- https://help.ubuntu.com/community/Beginners/BashScripting
- https://www.gnu.org/software/bash/manual/bash.html
In-class Exercise with OOP