Commit be93723
index.mjs
@@ -70,7 +70,7 @@ export function $(pieces, ...args) {
}
$.verbose = true
-$.shell = undefined
+$.shell = '/bin/bash'
$.cwd = undefined
export function cd(path) {
README.md
@@ -173,10 +173,10 @@ await $`cd ${os.homedir()} && mkdir example`
### `$.shell`
-Specifies what shell is used. Default is `/bin/sh`.
+Specifies what shell is used. Default is `/bin/bash`.
```js
-$.shell = '/bin/bash'
+$.shell = '/usr/bin/bash'
```
### `$.verbose`