메모리에서 사용되는 "시간"에 해당하는 명령은 무엇입니까?

메모리에서 사용되는 "시간"에 해당하는 명령은 무엇입니까?

를 사용하면 time프로그램 실행 시간에 대한 정보를 쉽게 얻을 수 있습니다. 메모리 사용량에 상응하는 명령이 있는지 궁금합니다. 예를 들어, 이 프로세스에 얼마나 많은 메모리가 할당되고 완료 후 얼마나 많은 메모리가 해제됩니까? Valgrind를 사용할 수 있다는 것은 알고 있지만 제게는 너무 무거워요.

답변1

> /usr/bin/time -v sleep 1
Command being timed: "sleep 1"
User time (seconds): 0.00
System time (seconds): 0.00
Percent of CPU this job got: 0%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.01
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 1820
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 1
Minor (reclaiming a frame) page faults: 91
Voluntary context switches: 2
Involuntary context switches: 2
Swaps: 0
File system inputs: 16
File system outputs: 0
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0

관련 정보