ubuntu:bash:hello_world
Differences
This shows you the differences between two versions of the page.
ubuntu:bash:hello_world [2019/12/07 00:57] – created peter | ubuntu:bash:hello_world [2019/12/07 01:39] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ===== Ubuntu - BASH - Hello World ===== | ||
- | |||
- | Programmers often learn new languages via learning the hello world program. | ||
- | |||
- | Use an editor like vim or nano to create the file hello-world.sh and copy the below lines into it. | ||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | echo "Hello World" | ||
- | </ | ||
- | |||
- | Save and quit the file. | ||
- | |||
- | You need to make this file executable using the below command. | ||
- | |||
- | <code bash> | ||
- | chmod a+x hello-world.sh | ||
- | </ | ||
- | |||
- | You can run this using any of the below two commands. | ||
- | |||
- | <code bash> | ||
- | bash hello-world.sh | ||
- | ./ | ||
- | </ | ||
- | |||
- | It will print out the string passed to echo inside the script. | ||
- | |||
- | |||
- | ---- | ||
- | |||
ubuntu/bash/hello_world.1575680241.txt.gz · Last modified: 2020/07/15 09:30 (external edit)