13 lines
177 B
Bash
Executable File
13 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Example in bash using STDIN signaling
|
|
|
|
counter=0
|
|
|
|
while read; do
|
|
echo "counter_bash count=${counter}"
|
|
let counter=counter+1
|
|
done
|
|
|
|
(>&2 echo "terminate")
|