Retry only for https protocol
[elinks.git] / contrib / TIPS-AND-TRICKS
blob6cd37333b17dc6dfa50ed36affea8b91694114da
1 Following are user contributed tips and tricks:
5 Poor Man's screen(1) ~or~ "relinks":
7 This will start ELinks on a *new* console if it is not already running, or open
8 the specified URL (if any) in a new tab in the running instance.  Save this
9 script as "relinks" or something.  Written by Russ, quoting fixed by Miciah.
11         #!/bin/sh
13         elinks -remote ping\(\) 2>/dev/null \
14                 && elinks -remote openURL\(${1:+"${1}"},new-tab\) \
15                 && exit 0
16         openvt -sw -- elinks ${1:+"${1}"} &
17         deallocvt