mirror of
https://github.com/noplacenoaddress/RNMnetwork.git
synced 2025-01-03 19:40:53 -05:00
7 lines
92 B
Bash
7 lines
92 B
Bash
|
#!/bin/bash
|
||
|
input="$1"
|
||
|
while IFS= read -r line
|
||
|
do
|
||
|
fold -w 1 `echo "$line"`
|
||
|
done < "$input"
|