table of contents
| ETA(1) | eta manual | ETA(1) |
NAME¶
eta - calculate eta of a running process by repeatedly inspecting its progress
SYNOPSIS¶
eta[OPTIONS] TARGET PROGRESS_COMMAND
DESCRIPTION¶
etaprints the progress and estimated time to completion based on the given PROGRESS_COMMAND and TARGET value.
PROGRESS_COMMAND should be a command that prints the current progress of some running process. If, for example, the running process is a file copy, a suitable progress command would be du -b some.file
TARGET should be the target value (value representing 100%) for the progress command. For a file copy the target value should be the size of the source file.
If you have for example the following process running:
you could monitor its progress and eta using
It's similar towatch(1)in the sense that it executes the given command repeatedly, but instead of displaying the output of the command, it parses the output and displays the progress and eta.
See NOTES for further details.
OPTIONS¶
Options adjust the behavior and output ofeta.
- -s, --start VALUE|initial
- UseVALUEas the starting value for the process (the value representing 0% progress). If you are, for example, appending a 1GB file onto an existing 1GB file…
…you use…
…to avoid having the progress start at 50%.
If you useinitialthe first value returned by the progress command will be used as start value. This could be useful if you don't know the original start value, or if you're only interested in the progress of the remaining process.
The default starting value is 0.
- -i, --interval SECS
- Run the progress command everySECSseconds. (May not be used in conjunction with--cont.)
- -d, --down
- To be used when the value decreases during progress. For example, if a script processes files in a directory and removes them as they get processed, you could use the following to monitor the progress:
Since the starting value will rarely be 0 when using--downthe default for--startis changed toinitial.
- -w, --width COLS
- Specifies the width of the output ofeta.If this option is not provided, the output will fill the width of the terminal, or, default to 80 columns if there's no TTY.
- -c, --cont
- Instead of running the given command repeatedly,etawill let the command keep running, and read the progress continuously line by line. If the process to be monitored writes its progress to a log file, you could for example use something like
(May not be used in conjunction with--interval.)
- -h, --help
- Prints a help message and exits.
EXAMPLES¶
Copyingfiles¶
If you're copying a directory to a remote host using something like
you can monitor the progress using
Growingnumberoffiles¶
If you're processing lots of files using something like
(Resize all jpg images and store the smaller versions in output-dir.) You can use
Note that the number of files may reach the target value before the last file is fully processed.
Shrinkingnumberoffiles¶
If you're processing files and removing them as they get processed…
…you can monitor the progress using:
Countinglines¶
You can use--contandcat -nto continuously monitor progress based on number of lines printed:
Theprocessprintsprogressinalogfile¶
If your running process logs the progress to a file, you could do something like
Theprocessprintsprogressonstdout¶
If you have a process that prints its progress on stdout:
Progress: 1 out of 55...
Progress: 2 out of 55...
Progress: 3 out of 55...
…
you can use--contand the command itself as argument toeta:
or, if you're a UUOC fan:
EXITSTATUS¶
- 0
- Command completed successfully
- 1
- Invalid command line arguments
- 2
- Execution of external command failed
- 3
- Could not find a number indicating progress in command output
NOTES¶
When parsing the TARGET value and --start argument, eta will look for the first digit and start parsing from there. The given values may have a suffix indicating a metric or binary magnitude. Supported suffixes are k, m, g, t, ki, mi, gi and ti (representing 10^3, 10^6, 10^9, 10^12, 2^10, 2^20, 2^30 and 2^40 resp.)
All arguments following the TARGET value will be joined and used as the PROGRESS_COMMAND. That is, there's no need for double quotes here:
If stdout is a file or pipe,etawill print a new line between each progress output, instead of a carriage return. If you want the new line behavior in the terminal, simply pipe the output throughcat(1).
etawill only look for the progress value in the first 1000 characters of the first line of output written by the progress command (unless --cont is provided).
AUTHOR¶
Written by Andreas Lundblad (andreas.lundblad@gmail.com).
REPORTINGBUGS¶
Report bugs in the issue tracker at github: <https://github.com/aioobe/eta/issues>
SEEALSO¶
| 09 February 2019 | GNU |