mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
* shell: organize imports * shell: dont allocate when printing errors * shell: implement $0, $1, argv accessors * add more tests * oops need this commit too * make these logs listen to silencing logs * expand switch else statements * align behavior with bash * this isnt referenced anywhere * add missing test file * add another test * revert this change * cache utf8 converted version of positionals * rebase fixes --------- Co-authored-by: Georgijs Vilums <georgijs.vilums@gmail.com>
6 lines
37 B
Bash
6 lines
37 B
Bash
#!/bin/sh
|
|
|
|
echo $0
|
|
echo $1
|
|
echo $2$2
|