Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. brace_group : Lbrace compound_list Rbrace
  2.  
  3. subshell : '(' compound_list ')'
  4.  
  5. { echo hello world; }
  6.  
  7. ( echo hello world )
  8.  
  9. /* These are reserved words, not operator tokens, and are
  10. recognized when reserved words are recognized. */
  11.  
  12.  
  13. %token Lbrace Rbrace Bang
  14. /* '{' '}' '!' */
  15.  
  16. foriin*; do
  17.  
  18. {somecommand;} >file
  19.  
  20. if !somecommand; then
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement