1LIBFEP(1) General Commands Manual LIBFEP(1)
2
3
4
6 fepcli - test client to fep
7
9 fep [options]
10
12 fepcli is a client to fep(1).
13
15 The fep command follows the usual GNU command line syntax, with long
16 options starting with two dashes (`-'). A summary of options is
17 included below.
18
19 -h, --help
20 Show summary of options.
21
22 -c, --cursor-text=TEXT
23 Render text at cursor position.
24
25 -s, --status-text=TEXT
26 Render text at the bottom of screen.
27
28 -d, --send-data=DATA
29 Send data to the FEP sub-shell.
30
31 -k, --listen-key-event
32 Listen to a key event.
33
34 -l, --log-file=FILE
35 Specify a log file.
36
38 $ fep -e /bin/sh
39
40 $ fepcli -s foo
41 shows text at the bottom
42
43 $ { sleep 1; fepcli -c foo; } &
44 shows text at the cursor
45
46 $ { sleep 1; fepcli -d bar; } &
47 sends text to the child process
48
49 $ fepcli -k
50 waits for a key event
51
53 fep(1)
54
56 libfep was written by Daiki Ueno <ueno@unixuser.org>.
57
58
59
60 3 Feb 2012 LIBFEP(1)