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
For SSH_SCP connections, Overthere parses the output of an ls command to determine the existence, type, length, etc. of files. This algorithm always parses the last line (so that it skips header introduced by sshd, sudo, etc.) but on some systems additional lines are printed after the output of ls.
This can be fixed by trying to parse ALL lines of the ls output, starting from the last, and checking which ones can be parsed.
The text was updated successfully, but these errors were encountered:
For SSH_SCP connections, Overthere parses the output of an ls command to determine the existence, type, length, etc. of files. This algorithm always parses the last line (so that it skips header introduced by sshd, sudo, etc.) but on some systems additional lines are printed after the output of ls.
This can be fixed by trying to parse ALL lines of the ls output, starting from the last, and checking which ones can be parsed.
The text was updated successfully, but these errors were encountered: