rusefi_documentation/wiki-tools/linkifyurls.sh

45 lines
1.1 KiB
Bash
Raw Normal View History

2022-01-24 14:16:31 -08:00
#!/usr/bin/env bash
# These two functions are used to escape variables for use in a sed command
# Passed a single string
escape() {
sed 's/[^^]/[&]/g; s/\^/\\^/g' <<<"$1";
}
export -f escape
escapeReplace() {
sed 's/[&/\]/\\&/g' <<<"$1";
}
export -f escapeReplace
# Main processing function
# Passed the path to a .md file
searchfile() {
while IFS= read -r -u 3 link; do
2022-01-24 14:59:53 -08:00
LINE=$(grep "$link" "$1")
if [ "$LINE" != "$link" ]; then
echo "$LINE"
fi
2022-01-24 14:16:31 -08:00
echo $link
2022-01-24 15:42:36 -08:00
read -p "Enter a title or leave empty or [n:skip|e:edit]: " TITLE
2022-01-24 15:04:18 -08:00
if [ "$TITLE" == "n" ]; then
2022-01-24 15:19:05 -08:00
echo
2022-01-24 15:04:18 -08:00
continue
fi
2022-01-24 15:42:36 -08:00
if [ "$TITLE" == "e" ]; then
$EDITOR "$1"
echo
continue
fi
2022-01-24 14:16:31 -08:00
if [ $(echo -n "$TITLE" | wc -c) -lt 1 ]; then
TITLE="$link"
fi
REPLACE=$(escape "$link")
REPLACEWITH=$(escapeReplace '['"$TITLE"']''('"$link"')')
sed -i "s/$REPLACE/$REPLACEWITH/" "$1"
2022-01-24 15:16:48 -08:00
echo
2022-01-24 14:50:04 -08:00
done 3< <(grep -oP '((?<![\(\[])http[s]?:\/\/[^\s]*)' "$1")
2022-01-24 14:16:31 -08:00
}
export -f searchfile
# run searchfile on every .md file in the repo
find . -iname "*.md" -exec bash -c 'searchfile "$0"' {} \;