Skip to content
Closed
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
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,9 @@ ts-node-cwd script.ts
console.log("Hello, world!")
```

Passing CLI arguments via shebang is allowed on Mac but not Linux. For example, the following will fail on Linux:
Passing CLI arguments via shebang requires passing the `-S` argument to `env` when using GNU Coreutils.

#!/usr/bin/env ts-node --files
// This shebang is not portable. It only works on Mac

Instead, specify all `ts-node` options in your `tsconfig.json`.
#!/usr/bin/env -S ts-node --files

## Programmatic

Expand Down