2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-05 12:00:16 +00:00
cheat.sheets/see_also/generate-see-also.sh
2017-06-04 20:52:14 +00:00

10 lines
102 B
Bash

#!/bin/bash
while read a;
do
for b in $a;
do
echo $a |tr ' ' '\n' > $b
done
done