dots/bin/bin/paul-content.sh

12 lines
268 B
Bash
Raw Normal View History

2021-09-06 06:38:06 +00:00
curl_cache (){
local cache_path=`echo $1 | sed 's|/|_|g'`
local cache_path="/tmp/$cache_path"
[ -f "$cache_path" ] || curl -s "$1" -o "$cache_path"
cat "$cache_path"
}
curl_cache "$1" | pup 'body .content text{}' | sed -r '/^\s*$/d' | bat --language=html