opnsense-core/src/bin/slowdownpipe.sh
Franco Fichtner 727453c076 src: move all files (again)
Make "src" the implicit "/usr/local" so that nobody can
sneak in weird files in the base file system or potentially
overwrite them.

This is the last time, I swear...  :)
2014-12-10 16:42:39 +01:00

10 lines
122 B
Bash
Executable File

#!/bin/sh
# Illustrates use of a while loop to read a file
cat - | \
while read line
do
echo "$line"
sleep 0.01
done