Nate Fischer
Nate Fischer
@ariporad could you please look into this?
Sounds like we should implement a `read()` function similar to Bash's [read](http://linuxcommand.org/lc3_man_pages/readh.html). If anyone can open a PR, I'll gladly review
@pfraces Sounds like something we'd be interested in :+1:
Please ping this thread if you run into any issues implementing this. Thanks!
Sounds good to me. Thanks for pointing that out. If you can implement it to work with `-` as a file name, I'll try to modify the the internal function...
How is cat async? It blocks while it reads input, and returns when it receives EOF.
I believe the standard way of sending EOF is to use `^D` instead. If we really wanted, we could write a signal handler for `^C`, but I'd prefer to hold...
Could you please file this in the [chromium bug tracker](https://bugs.chromium.org/p/chromium/issues/entry?template=Webview+Bugs)? It sounds like the chromium networking team might be better suited to understand what's going on. If you paste the...
Yeah, just pass `"/"` to [addPathHandler](https://developer.android.com/reference/androidx/webkit/WebViewAssetLoader.Builder.html#addPathHandler(java.lang.String,%20androidx.webkit.WebViewAssetLoader.PathHandler)). This will let you intercept requests to `https://some.origin/foo.html` or `https://some.origin/index.html`. However, AssetLoader doesn't do anything special when you load a URL which ends in...
This is currently unsupported in shelljs and shx. You'll need to pass options in a single string (as you've discovered).