Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove misleading text about passing arguments to env #1448

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 2 additions & 5 deletions README.md
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