eolas/scripts/convert_link_format.sh
2024-02-16 16:14:01 +00:00

8 lines
143 B
Bash
Executable file

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