feed-image  Delivered by FeedBurner  ISSN 1836-5930





Poll

Which of following tutorials would you like to see on the Linuxconfig.org?
 
Partner Linux Sites
TuxMachines
DebianAdmin
Monsterb
LinuxBloggers
AdamsInfo
LinuxScrew
FreeSoftwareLinux
Jam's Ubuntu Blog
All For Linux

time
Article Index
1. Name
2. Synopsis
3. Examples

1. Name

time [man page] - run programs and summarize system resource usage

2. Synopsis

time   [ -apqvV ] [ -f FORMAT ] [ -o FILE ]
[ --append ] [ --verbose ] [ --quiet ] [ --portability ]
[ --format=FORMAT ] [ --output=FILE ] [ --version ]
[ --help ] COMMAND [ ARGS ]

3. Examples

Measure time for running program time itself:
$ time 
Measure time for running program
Measure execution time of "find" command and redirect stderr to /dev/null:
$ time find / -name resolv.conf 2>/dev/null 
Measure execution time of find