Skip to content
On this page

time

수정하기
문서 생성 2023-02-01 21:57:12 최근 수정 2023-02-01 22:52:09
On this page
  • 특정 명령을 실행할 때 소요되는 시간을 확인할 수 있다.
  • 나는 현재 zsh을 사용하고 있는데 zsh에서는 이 명령어가 예약어라고 한다. type time으로 확인해보면 time is a reserved word라고 나온다.

example

time ls
time npm run build
  • 결과로 나오는 usersystem은 각각 user mode와 kernel mode에서 소요된 시간(초)을 보여준다.
  • cpu는 총 CPU 시간의 백분율. usersystem의 결합된 값을 표시.

reference

Tags