Last active
September 14, 2015 06:07
-
-
Save Swoorup/d36c01c880984639c483 to your computer and use it in GitHub Desktop.
Shell Grammer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<command line> ::= <job> | |
| <job> '&' | |
| <job> '&' <command line> | |
| <job> ';' | |
| <job> ';' <command line> | |
<job> ::= <command> | |
| < job > '|' < command > | |
<command ::= <simple command> | |
| <simple command> '<' <filename> | |
| <simple command> '>' <filename> | |
<simple command>::= <pathname> | |
| <simple command> <token> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment