16 lines
230 B
Plaintext
16 lines
230 B
Plaintext
$ echo hello # this is a comment
|
|
hello
|
|
|
|
$ echo "keep # this"
|
|
keep # this
|
|
|
|
# this is a comment
|
|
$ echo "after comment"
|
|
after comment
|
|
|
|
$ echo "#hashtag"
|
|
\#hashtag
|
|
|
|
$ echo "https://google.com/#autoload"
|
|
https://google.com/#autoload
|