5 lines
86 B
Bash
5 lines
86 B
Bash
|
|
#!/bin/sh
|
||
|
|
while IFS= read -r a; do
|
||
|
|
printf '%s\n' "$a"
|
||
|
|
done <input.txt >output.txt
|