9 lines
143 B
Bash
9 lines
143 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
find /home/thomas/repos/eolas/zk/ -type f -name "*.md" | while
|
||
|
read file; do
|
||
|
sed -r 's/\[([^\]]+)\]\(\/[^)]+\)/[[\1]]/g'
|
||
|
done
|
||
|
|
||
|
|