You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The man page for script here indicates that -t will send timings to STDERR. It will not direct it to a file as the command being issued expects. Using the following solved this.
script $args -q -t "$scriptfile" 2>"$timingfile"
The text was updated successfully, but these errors were encountered:
Unfortunately it looks like there are multiple different versions of script in the wild... When I wrote this gem I was testing with Ubuntu, so it works there. On OS X the -t flag specifies the interval between flushes :/.
Out of interest, do you have ttyrec installed on your system?
Running Centos 6.6 I am unable to run the download, as invalid options are supplied to the script command.
This is invoking script as
script -q -t/tmp/1MIVy.timing /tmp/PZ4dl.script
The man page for script here indicates that -t will send timings to STDERR. It will not direct it to a file as the command being issued expects. Using the following solved this.
script $args -q -t "$scriptfile" 2>"$timingfile"
The text was updated successfully, but these errors were encountered: