5 lines
50 B
Bash
Executable file
5 lines
50 B
Bash
Executable file
#!/bin/sh
|
|
|
|
while read line
|
|
do echo "$@$line"
|
|
done
|