ブックマークリストにあるすべてのWebサイトで自動的に全文検索(またはさらに優れた正規表現)を実行することはできますか?
編集
これが可能な他のブラウザはありますか?
次のスクリプトは、ブックマークの最新の自動バックアップにアクセスし、フォーマットされたプレーンテキストである[〜#〜] html [〜#〜]リンクごとにリクエストを発行します。 links
というターミナルWebブラウザーを使用します(Ubuntuリポジトリにあります)... leafpad
という軽量のテキストエディターも使用しているため、必要なリンクを変更、追加、変更できますへ(これもUpuntoリポジトリにあります)...
リンクを追跡しません。リンクが接続するページを提供するだけです...
実際にキャプチャされたWebページの出力は、gedit
で開くテキストファイルに書き込まれます(ただし、grep、sed、awk、vim、less ...などを使用するように変更できます)。
スクリプトは次のとおりです:(おそらくいくつかのバグがありますが、ブックマークの履歴に書き込むことはありません。読み取るだけです...
#!/bin/bash
#
# mame: ffhtmllinks
#
# requires: firefox ...(The source of the bookmarks, using the auto backup list)
# TODO: use current list (but where is it?)
# leafpad ...(It acts as an editable dialog)
# links ...(Terminal web browser, which can write formatted document to stdout)
bname=$(basename $0)
ffdir="$HOME/.mozilla/firefox"
[[ ! -e "$ffdir" ]] && { echo "ERROR: Could not find Firefox config directory:" ; echo "$ffdir" ; exit 1 ; }
echo -e "\n# Profile Name\tDirectory\n= ============\t================"
< "$ffdir/profiles.ini" sed -n \
-e "/^\[Profile[0-9]\]$/,/^Path=/{
:top
s/^Name=\(.*\)/\1/; t holdname
s/^Path=\(.*\)/\1/; t havepath
n; b top
:holdname
h; n; b top
:havepath
x; G; s/\(.*\)\n\(.*\)/\1:\t\2/p
}" | nl -w 1 -s ' ' > "$ffdir/$bname.names"
cat "$ffdir/$bname.names"
echo -e "\nType the Name (or line number) of the Profile" \
"\n whose bookmarks you want to search"
read name
name="${name%% /}"
name="${name## /}"
<"$ffdir/$bname.names" sed -n "/^\($name .*\)\|\([0-9]\+ $name\)$/ p" > "$ffdir/$bname.sel"
selct=$(<"$ffdir/$bname.sel" wc -l)
(( selct != 1 )) && { echo "ERROR: Could not find Profile:" ; echo "$name" ; exit 2 ; }
profdir="$ffdir/$(<"$ffdir/$bname.sel" sed -n "s/^[0-9]\+ [^"$'\t'"]\+"$'\t'"\(.*\)$/\1/p")"
bbakdir="$profdir/bookmarkbackups"
[[ ! -e "$profdir" ]] && { echo "ERROR: Could not find Firefox Profile directory:" ; echo "$profdir" ; exit 3 ; }
[[ ! -e "$bbakdir" ]] && { echo "ERROR: Could not find Firefox Bookmark Backup directory:" ; echo "S$bbakdir" ; exit 4 ; }
bbakjson="$(for f in "$bbakdir/bookmarks"* ; do echo "$f" ; done | sed -n \$p)"
[[ ! -e "$bbakjson" ]] && { echo "ERROR: Could not find Firefox Bookmark Backup .json file:" ; echo " $bbakjson" ; exit 4 ; }
bbakhtml="$ffdir/$bname.bbakhtml"
<"$bbakjson" sed -n "s/,\"uri\":\"http/\n"$'\x01'===$'\x01'"http/gp" \
|sed -n "s/^"$'\x01'"==="$'\x01'"\([^"\""]\+\)\".*/\n\1\n/p" \
|sed "/^$/ d" \
>"$bbakhtml"
echo "===="
echo "INFO: About to open the list of bookmark links in a text editor (leafpad)..."
echo " You can modify, add or remove links as you like..."
echo " It is only a temporary file, so you won't loose your bookmarks..."
echo " NB: You must actually EXIT 'leafpad' before this process can proceed."
echo
echo -n "Press Enter to open the bookmarks list in 'leafpad'... "
read x
echo
div="####################################################################################"
pagedump="$ffdir/$bname.bbakdump" ; cp /dev/null "$pagedump"
linkcnt=$(<"$bbakhtml" wc -l); linklnb=1
<"$bbakhtml" leafpad 2>/dev/null
echo "======================================="
( while IFS= read -r link ; do
echo -e "\n\n$div\n$div\n$div\n# \n# Link $((linklnb++)) of $linkcnt\n# \n"
links -dump "$link"
done <"$bbakhtml" ) |tee >( sed -n p >>"$pagedump" ) | sed -n p
wait 2 # TODO need a wait loop here for asynchronous process-substitution (sleep will have to do for now)
gedit "$pagedump"
exit
#
おそらく、~/.mozilla/firefox/'profile name'/bookmarkbackups/
内にある.jsonバックアップを使用してWebサイトを検索し、それらのWebサイト内の表現を検索できます。