Last active
August 29, 2015 13:56
-
-
Save usual-tools/9065494 to your computer and use it in GitHub Desktop.
bash で Hello World
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| echo "Hello World ! Try72" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 設定 | |
| $ ls -lF | |
| total 4 | |
| -rw----r-- 1 user group 38 Feb 18 22:49 hello.sh | |
| $ chmod 700 hello.sh | |
| $ ls -lF | |
| total 4 | |
| -rwx------ 1 user group 38 Feb 18 22:49 hello.sh* | |
| # 実行 | |
| $ ./hello.sh | |
| Hello World ! Try72 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment