mirror of
https://github.com/lucaspalomodevelop/opnsense-core.git
synced 2026-03-13 08:09:42 +00:00
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... :)
10 lines
122 B
Bash
Executable File
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
|