mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-09 07:10:36 +00:00
10 lines
102 B
Bash
10 lines
102 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
while read a;
|
||
|
do
|
||
|
for b in $a;
|
||
|
do
|
||
|
echo $a |tr ' ' '\n' > $b
|
||
|
done
|
||
|
done
|