]> git.pond.sub.org Git - empserver/blob - info/echo.t
client: Make get_password() not echo with POSIX && !HAVE_GETPASS
[empserver] / info / echo.t
1 .TH Command ECHO
2 .NA echo "Echo a string back to the client"
3 .LV Expert
4 .SY "echo [<string>]"
5 The echo command echos its first argument.
6 It is designed to help clients synchronize their commands
7 with the server when operating asynchronously.  Note that if there are
8 any spaces in your string, then you will need to include the string in
9 quotes.
10 .s1
11 For example:
12 .EX echo SN#123456
13 .nf
14 SN#123456
15 .fi
16 .EX echo hi mom
17 .nf
18 hi
19 .fi
20 .EX echo \&"hi mom"
21 .nf
22 hi mom
23 .fi
24 .SA "toggle, Communication"