mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 21:07:57 +02:00
8 lines
57 B
Plaintext
8 lines
57 B
Plaintext
shcat()
|
|
{
|
|
while read -r line
|
|
do
|
|
echo "$line"
|
|
done
|
|
}
|