eolas/scripts/convert_link_format.sh
2024-02-17 11:57:44 +00:00

7 lines
156 B
Bash
Executable file

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