We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have two scrips that produce the same output:
✦ ↳ ./gmail.1m.sh Test --- ✦ ↳ ./gmail.1m.js Test --- ✦ ↳ diff <(./gmail.1m.sh) <(./gmail.1m.js) ✦ ↳
The JavaScript file:
#!/usr/bin/env node console.log('Test'); console.log('---');
The bash file:
#!/bin/bash echo 'Test' echo '---'
However, one works, one doesn't.
The text was updated successfully, but these errors were encountered:
I have two scrips that produce the same output: ✦ ↳ ./gmail.1m.sh Test --- ✦ ↳ ./gmail.1m.js Test --- ✦ ↳ diff <(./gmail.1m.sh) <(./gmail.1m.js) ✦ ↳ The JavaScript file: #!/usr/bin/env node console.log('Test'); console.log('---'); The bash file: #!/bin/bash echo 'Test' echo '---' However, one works, one doesn't.
I have the same issue, tho using process.stdout.write will probably fix
Sorry, something went wrong.
Hello, I confirm the same issue even using process.stdout.write instead of console.log
process.stdout.write
console.log
No branches or pull requests
I have two scrips that produce the same output:
The JavaScript file:
The bash file:
However, one works, one doesn't.
The text was updated successfully, but these errors were encountered: