Previous | Contents | Index |
Indicates that everything that follows it on a command line is a comment and should not be processed as part of a command.
! comment-text
$ ! $ WRITE SYS$OUTPUT "hello" ! This command should output "hello". hello $ FOO = " " ! This command defines FOO as a blank. $ FOO WRITE SYS$OUTPUT "hello" ! This command should output "hello". hello $ FOO = "!" ! This command defines FOO as a !. $ FOO WRITE SYS$OUTPUT "hello" ! This command should be ignored. $ ! WRITE SYS$OUTPUT "hello" ! This command should be ignored too. |
Previous | Next | Contents | Index |