Displaying 1 result from an estimated 1 matches for "percent_dollar_expand".
2025 May 07
0
Change in behaviour V9 ./. V10 intended?
...0 at 127.0.0.1) Password:
# no expansion, %% is passed as is
# ssh user%%1234567890 at 127.0.0.1
(user%%1234567890 at 127.0.0.1) Password:
#
# Current system, using V10:
# ssh -V
OpenSSH_10.0p2, OpenSSL 3.5.0 8 Apr 2025
# ssh user%1234567890 at 127.0.0.1
vdollar_percent_expand: unknown key %1
percent_dollar_expand: failed
# % must be escaped as %%
# ssh user%%1234567890 at 127.0.0.1
(user%1234567890 at 127.0.0.1) Password:
User names follow a <user>%<id> pattern.
Is this the intended behaviour? The section form the release notes
ssh(1): allow %-token and environment variable expansion in...