10 lines
369 B
Bash
Executable File
10 lines
369 B
Bash
Executable File
#!/bin/bash
|
|
# This line is a comment.
|
|
echo "A comment will follow." # Comment here.
|
|
echo "The # here does not begin a comment."
|
|
echo 'The # here does not begin a comment.'
|
|
echo The \# here does not begin a comment.
|
|
echo The # here begins a comment.
|
|
|
|
echo ${PATH#*:} # Parameter substitution, not a comment.
|
|
echo $(( 2#101011 )) # Base conversion, not a comment. |