`~#`은 bash의 물결표 확장인가요?

`~#`은 bash의 물결표 확장인가요?

~#물결표는 bash 확장 입니까 ? 나는 그것을 찾지 못했다https://www.gnu.org/software/bash/manual/html_node/Tilde-Expansion.html. 내 질문은 다음에서 비롯됩니다.https://unix.stackexchange.com/a/506532/674. 감사해요.

$ ~#
The following connections are open:
  #0 client-session (t4 r0 i0/0 o0/0 fd 5/6 cc -1)
  #1 x11 (t4 r3 i0/0 o0/0 fd 8/8 cc -1)

답변1

ssh아니요, 전달된 연결을 나열하는 특수 이스케이프 코드입니다. 분명히 SSH 연결을 통해 셸에 연결되어 있습니다.

bash~#명령줄에 다음을 입력하면 "명령을 찾을 수 없습니다"라고 응답합니다.

$ ~#
bash: ~#: command not found

입력하려면 참고하세요.~ 쉘을 입력하세요누른 후 첫 번째 문자로 쉘이 SSH 연결의 반대편에 있는 경우 Enter이러한 이스케이프 코드로 인해 두 번 눌러야 합니다.~

사용 가능한 다른 명령은 다음에 나열되어 있습니다.ssh수동(이들은 를 누른 후 첫 번째 문자로 입력해야 합니다 Enter):

 ~.      Disconnect.

 ~^Z     Background ssh.

 ~#      List forwarded connections.

 ~&      Background ssh at logout when waiting for forwarded connection /
         X11 sessions to terminate.

 ~?      Display a list of escape characters.

 ~B      Send a BREAK to the remote system (only useful if the peer
         supports it).

 ~C      Open command line.  Currently this allows the addition of port
         forwardings using the -L, -R and -D options (see above).  It also
         allows the cancellation of existing port-forwardings with
         -KL[bind_address:]port for local, -KR[bind_address:]port for
         remote and -KD[bind_address:]port for dynamic port-forwardings.
         !command allows the user to execute a local command if the
         PermitLocalCommand option is enabled in ssh_config(5).  Basic
         help is available, using the -h option.

 ~R      Request rekeying of the connection (only useful if the peer
         supports it).

 ~V      Decrease the verbosity (LogLevel) when errors are being written
         to stderr.

 ~v      Increase the verbosity (LogLevel) when errors are being written
         to stderr.

관련 정보