Difference between revisions of "BASH"
Jump to navigation
Jump to search
Rafahsolis (talk | contribs) (Created page with "== BASH Script == === Hello World === <source lang="bash"> #!/bin/bash echo Hello World </source> === Variables === === Strings === === Loops === ==== While ==== ==== For ====...") |
Rafahsolis (talk | contribs) |
||
| Line 3: | Line 3: | ||
<source lang="bash"> | <source lang="bash"> | ||
#!/bin/bash | #!/bin/bash | ||
| − | + | STR="Hello World" | |
| + | echo $STR | ||
</source> | </source> | ||
| + | |||
=== Variables === | === Variables === | ||
=== Strings === | === Strings === | ||
Revision as of 00:49, 27 March 2015
BASH Script
Hello World
#!/bin/bash
STR="Hello World"
echo $STR