tree-sitter-bash/corpus/commands.txt

199 lines
3.5 KiB
Plaintext
Raw Normal View History

2017-07-14 19:28:54 +00:00
===============================
Commands
===============================
whoami
---
(program
(command (command_name (word))))
2017-07-14 19:28:54 +00:00
===============================
Commands with arguments
===============================
cat file1.txt
2017-07-16 05:13:55 +00:00
git diff --word-diff=color -- file1.txt file2.txt
2017-07-14 19:28:54 +00:00
---
(program
(command (command_name (word)) (word))
(command (command_name (word)) (word) (word) (word) (word) (word)))
2017-07-14 19:28:54 +00:00
===============================
Commands with quoted arguments
===============================
echo "hello $(whoami), this is $(uname)"
echo 'hi'
---
(program
(command (command_name (word)) (string
(command_substitution (command (command_name (word))))
(command_substitution (command (command_name (word))))))
(command (command_name (word)) (raw_string)))
2017-07-15 00:32:55 +00:00
===============================
Quoted command names
===============================
"$a/$b" c
---
(program
(command
(command_name (string (simple_expansion (variable_name)) (simple_expansion (variable_name))))
(word)))
2017-07-15 00:32:55 +00:00
===============================
Commands with numeric arguments
===============================
exit 1
---
(program
(command (command_name (word)) (word)))
2017-07-14 19:28:54 +00:00
===================================
Commands with environment variables
===================================
VAR1=1 ./script/test
VAR1=a VAR2="ok" git diff --word-diff=color
---
(program
2017-07-14 23:11:35 +00:00
(command
(variable_assignment (variable_name) (word))
(command_name (word)))
2017-07-14 23:11:35 +00:00
(command
(variable_assignment (variable_name) (word))
(variable_assignment (variable_name) (string))
(command_name (word))
2017-07-16 05:13:55 +00:00
(word)
(word)))
2017-07-14 19:28:54 +00:00
2017-07-15 00:41:14 +00:00
===================================
Empty environment variables
===================================
VAR1=
VAR2= echo
---
(program
(variable_assignment (variable_name))
(command (variable_assignment (variable_name)) (command_name (word))))
2017-07-15 00:41:14 +00:00
2017-07-14 19:28:54 +00:00
===================================
Pipelines
===================================
whoami | cat
cat foo | grep -v bar
---
(program
2017-07-14 23:11:35 +00:00
(pipeline
(command (command_name (word)))
(command (command_name (word))))
2017-07-14 23:11:35 +00:00
(pipeline
(command (command_name (word)) (word))
(command (command_name (word)) (word) (word))))
2017-07-14 19:28:54 +00:00
===================================
Lists
===================================
2017-07-14 23:11:35 +00:00
a | b && c && d; d e f || e g
2017-07-14 19:28:54 +00:00
---
(program
2017-07-14 23:11:35 +00:00
(list
2017-07-14 19:28:54 +00:00
(list
(pipeline
(command (command_name (word)))
(command (command_name (word))))
(command (command_name (word))))
(command (command_name (word))))
2017-07-14 23:11:35 +00:00
(list
(command (command_name (word)) (word) (word))
(command (command_name (word)) (word))))
2017-07-14 19:43:42 +00:00
===============================
File redirects
===============================
whoami > /dev/null
cat a b > /dev/null
2017-07-14 19:43:42 +00:00
2>&1 whoami
---
(program
2017-07-14 23:11:35 +00:00
(command
(command_name (word))
2017-07-16 05:13:55 +00:00
(file_redirect (word)))
2017-07-14 23:11:35 +00:00
(command
(command_name (word))
2017-07-16 05:13:55 +00:00
(word)
(word)
(file_redirect (word)))
2017-07-14 23:11:35 +00:00
(command
2017-07-16 05:13:55 +00:00
(file_redirect (file_descriptor) (word))
(command_name (word))))
2017-07-14 20:00:41 +00:00
===============================
2017-07-14 23:11:35 +00:00
Heredoc redirects
2017-07-14 20:00:41 +00:00
===============================
2017-07-14 23:11:35 +00:00
node <<JS
console.log("hi")
JS
bash -c <<JS
echo hi
JS
2017-07-14 20:00:41 +00:00
---
(program
2017-07-14 23:11:35 +00:00
(command
(command_name (word))
2017-07-14 23:11:35 +00:00
(heredoc_redirect (heredoc)))
(command
(command_name (word))
2017-07-16 05:13:55 +00:00
(word)
2017-07-14 23:11:35 +00:00
(heredoc_redirect (heredoc))))
2017-07-14 20:00:41 +00:00
===============================
2017-07-14 23:11:35 +00:00
Heredocs with variables
2017-07-14 20:00:41 +00:00
===============================
2017-07-14 23:11:35 +00:00
node <<JS
a $B ${C}
JS
exit
2017-07-14 20:00:41 +00:00
---
(program
2017-07-14 23:11:35 +00:00
(command
(command_name (word))
2017-07-14 23:11:35 +00:00
(heredoc_redirect (heredoc
2017-07-16 05:13:55 +00:00
(simple_expansion (variable_name))
(expansion (variable_name)))))
(command (command_name (word))))