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
$ # The following will create a file `/var/log/dump`
$ # on `somehost.com` under `user` with the content `beep`
$ recho [email protected] beep > /var/log/dump
Unfortunately, it doesn't work.
Scapeless:recho elyscape$ lsScapeless:recho elyscape$ recho elyscape.com test> hiScapeless:recho elyscape$ ls hihiScapeless:recho elyscape$ ssh elyscape.com ls hils: cannot access hi: No such file or directoryScapeless:recho elyscape$
This is because output redirection is handled by the shell. To fix this, you need to escape the redirector, like so:
Scapeless:recho elyscape$ lsScapeless:recho elyscape$ recho elyscape.com test\> hiScapeless:recho elyscape$ ls hils: cannot access hi: No such file or directoryScapeless:recho elyscape$ ssh elyscape.com ls hihiScapeless:recho elyscape$
The text was updated successfully, but these errors were encountered:
From the bpkg page:
Unfortunately, it doesn't work.
This is because output redirection is handled by the shell. To fix this, you need to escape the redirector, like so:
The text was updated successfully, but these errors were encountered: