rwxrob-dot/scripts/urls
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

18 lines
288 B
Bash
Executable File

#!/usr/bin/env bash
tmp=$(mktemp)
IFS=$'\n'
while read -r line; do
[[ $line =~ https: ]] || continue
line="http${line##*http}"
line=${line%% *}
echo $line
done < "$WEECHAT_LOG" > "$tmp"
if isterm; then
tail -10 "$tmp" |lolcat
else
tail -10 "$tmp"
fi
rm "$tmp"