mirror of
https://github.com/noplacenoaddress/RNMnetwork.git
synced 2024-10-01 01:05:51 -04: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"
|