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
but that requires then first knowing/discovering the home folder for the user (usually ssh uri is just like hostname:path/relative/to/home) and would require some direct ssh invocation first. Any attempt to make it relative, didn't work:
❯ python ~/.tmp/fsspec_ssh ssh://smaug.datalad.org/~/.emacs 1
...
FileNotFoundError: [Errno 2] No such file or directory
❯ python ~/.tmp/fsspec_ssh ssh://smaug.datalad.org/./.emacs 1
...
FileNotFoundError: [Errno 2] No such file or directory
The text was updated successfully, but these errors were encountered:
not yet sure if relates to
but ATM it seems it is impossible to use relative path :-/ Trying with a simple
open
and this helper script
works for full path:
but that requires then first knowing/discovering the home folder for the user (usually ssh uri is just like
hostname:path/relative/to/home
) and would require some directssh
invocation first. Any attempt to make it relative, didn't work:The text was updated successfully, but these errors were encountered: