8 lines
202 B
Bash
8 lines
202 B
Bash
|
|
#!/bin/sh
|
||
|
|
# A leading hash symbol begins a comment.
|
||
|
|
echo "Hello" # Comments can appear after a statement.
|
||
|
|
|
||
|
|
# The hash symbol must be at the beginning of a word.
|
||
|
|
echo This_Is#Not_A_Comment
|
||
|
|
#Comment
|