``` task hello(type: Exec) { executable "sh" a...
# gradle
c
Copy code
task hello(type: Exec) {
  executable "sh"
  args "-c", "echo 'hello from your shell'"
}