aboutsummaryrefslogblamecommitdiffstats
path: root/.w3m/cgi-bin/restore_tab.cgi
blob: 27b3316dc17f17fcec7f60ad27abacaa7d28d849 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                         
#!/usr/bin/env sh

TAB_RESTORE_LIMIT=30

last_tab=$(tail -n 1 ~/.w3m/RestoreTab.txt);
limit=$(tail -n $TAB_RESTORE_LIMIT ~/.w3m/RestoreTab.txt)
other_tabs=$(printf "%s" "$limit" | head -n -1);
printf "%s\r\n" "$other_tabs" > ~/.w3m/RestoreTab.txt;
printf "%s\r\n" "W3m-control: GOTO $last_tab";
printf "W3m-control: DELETE PREVBUF\r\n";