Skip to content

Instantly share code, notes, and snippets.

@Swoorup
Last active September 14, 2015 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Swoorup/d36c01c880984639c483 to your computer and use it in GitHub Desktop.
Save Swoorup/d36c01c880984639c483 to your computer and use it in GitHub Desktop.
Shell Grammer
<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