Skip to content

Instantly share code, notes, and snippets.

@johwanghee
Created February 28, 2017 06:21
Show Gist options
  • Save johwanghee/2ceb469cb26f533676d5caf8694aa9e3 to your computer and use it in GitHub Desktop.
Save johwanghee/2ceb469cb26f533676d5caf8694aa9e3 to your computer and use it in GitHub Desktop.
basic bash shell script
$ vi hello.sh
(hello.sh)
#!/bin/bash
echo hello world
$ chmod 755 hello.sh
$ ./hello.sh
hello world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment