[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Lynx-dev] session scripting (was (no subject))
From: |
davidson |
Subject: |
Re: [Lynx-dev] session scripting (was (no subject)) |
Date: |
Thu, 3 Oct 2013 12:13:01 -0400 (EDT) |
User-agent: |
Alpine 2.02 (DEB 1266 2009-07-14) |
On Thu, 3 Oct 2013, Floidranzil Costa wrote:
It would be kind of you if you would be able to explain
process/steps of capturing the required keystrokes that I wanted
(y,Q) to use with the -cmd_log option, and then replaying them with
the -cmd_script option.
to use the -cmd_log option to log the keystrokes you use during a
session, just start lynx with the -cmd_log=FILE option, where FILE is
the desired filename of the keystroke log.
for example:
address@hidden:~$ lynx -cmd_log=logfile1
this will start a browsing session. your keystrokes during this
session will be logged in a file named logfile1.
after quitting the session, you can start a scripted session, using
logfile1 as the script, like this:
address@hidden:~$ lynx -cmd_script=logfile1
i hope this helps you.
-wes