8 이것은 다음의 출력 중 하나입니다 who. yang pts/6 2011-06-22 09:25 (10.231.22.12) 거기에 메시지를 보내는 방법이 있습니까? linux — 리눅스 소스
14 이 시도: write yang /dev/pts/6 #type your message #ctrl + D (EOF) 보다: man 1 write 또는 echo "message" > /dev/pts/6 — 존 웨슬리 왕자 소스
-2 ~# tty /dev/pts/89 ~# echo hello to myself >/dev/pts/89 hello to myself 또는 ~# echo hello to myself >`tty` hello to myself 또는 여러 줄을 작성하십시오. ~# cat >>`tty` hello from another way of doing this ^D ^ D = CTRL + D입니다. — 0xdecaffedc0ffee 소스 2 -1 기존 답변에 아무 것도 추가하지 않기 때문에 — HBruijn