blob: 2ed53df4eea43ab7b111db9e0039630aa39550fd (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env sh
# generate w3m functions to proper formatting for fzf menu
cat /usr/share/doc/w3m/README.func | while read -r line; do
func_name="$(echo "$line" | awk '{print $1;}')"
description="$(echo "$line" | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}')"
echo "${func_name}#@${func_name}\\\$#-- ${description}"
done
|