Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ Temp file factory.

```js
f1 = tmpfile() // /os/based/tmp/zx-1ra1iofojgg
f2 = tmpfile('f2.txt') // /os/based/tmp/zx-1ra1iofojgg/foo.txt
f2 = tmpfile('f2.txt') // /os/based/tmp/zx-1ra1iofojgg/f2.txt
f3 = tmpfile('f3.txt', 'string or buffer')
f4 = tmpfile('f4.sh', 'echo "foo"', 0o744) // executable
```
Expand Down
2 changes: 1 addition & 1 deletion docs/migration-from-v7.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $.quiet = true // to completely turn off logging
// import {ssh} from 'zx' ↓
import {ssh} from 'webpod'

const remote = ssh('user@host')
const remote = ssh({remoteUser: 'user', hostname: 'host'})
await remote`echo foo`
```

Expand Down