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
SpiderMonkey's js shell can read standard input with readline().
js
readline()
The current implementation of readBinary checks if the path is a file at check_is_file(path)?; in https://github.com/Redfire75369/spiderfire/blob/master/modules/src/fs/fs.rs.
readBinary
check_is_file(path)?;
It should be possible to read from the file descriptors /dev/stdin , /proc/self/fd/0, /proc/PID/fd/0.
/dev/stdin
/proc/self/fd/0
/proc/PID/fd/0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SpiderMonkey's
js
shell can read standard input withreadline()
.The current implementation of
readBinary
checks if the path is a file atcheck_is_file(path)?;
in https://github.com/Redfire75369/spiderfire/blob/master/modules/src/fs/fs.rs.It should be possible to read from the file descriptors
/dev/stdin
,/proc/self/fd/0
,/proc/PID/fd/0
.The text was updated successfully, but these errors were encountered: