| 1 | bin/ysh is the shell with data tYpes, influenced by pYthon, JavaScript, ... |
| 2 | |
| 3 | Usage: |
| 4 | ysh FLAG* SCRIPT ARG* |
| 5 | ysh FLAG* -c COMMAND ARG* |
| 6 | ysh FLAG* |
| 7 | |
| 8 | Examples: |
| 9 | ysh -c 'echo hi' |
| 10 | ysh myscript.ysh |
| 11 | echo 'echo hi' | ysh |
| 12 | |
| 13 | Note that bin/ysh is the same as bin/osh with the ysh:all option group set: |
| 14 | osh -o ysh:all -c 'echo hi' # Same as YSH |