mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
30 lines
613 B
Bash
Executable file
30 lines
613 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Expected input from stdin:
|
|
# streamNo delay message
|
|
# Running the following
|
|
#
|
|
# (cat <<EOF
|
|
# 2 1 one\\\\n
|
|
# 1 1 two\\\\n
|
|
# 1 3 four
|
|
# 1 1 \\\\rNo, three..\\\\n
|
|
# EOF
|
|
# ) | ./subprocess.sh
|
|
#
|
|
# Would result in:
|
|
# one (after a delay of 1 sec. on stderr)
|
|
# two (after a delay of another second on stdout)
|
|
# four (after a delay of three more seconds on stdout)
|
|
# No, three.. (overwrites the line with "four" after a second)
|
|
|
|
while read line; do
|
|
[[ -z $line ]] && continue
|
|
stream=${line%% *}
|
|
rest=${line#* *}
|
|
delay=${rest%% *}
|
|
message=${rest#* }
|
|
sleep $delay
|
|
printf "$message" >&$stream
|
|
done
|
|
wait
|