전임자:
$read &
[1] 15139
[1]+ Stopped
$jobs -l
[1]+ 15139 Stopped (tty input) read
답변1
이는 fifo를 사용하여 쉽게 수행할 수 있습니다.
$ cat bar.sh
#!/bin/sh
read bar
echo got $bar in the read line
$ mkfifo foo
$ ./bar.sh < foo &
$ echo hello > foo
$ got hello in the read line
[1]+ Done ./bar.sh < foo
$