You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ sed -i 's/foo/bar/g' file.txt # note: this is silent
$ cat file.txt
bar
$ shx sed -i 's/bar/baz/g' file.txt # this should be silent
baz
$ shx cat file.txt
baz
We could arguably make the change in shelljs itself (which would help n_shell).
The text was updated successfully, but these errors were encountered:
We could arguably make the change in shelljs itself (which would help
n_shell
).The text was updated successfully, but these errors were encountered: