이 플래그가 작동하지 않는 이유는 무엇입니까?

이 플래그가 작동하지 않는 이유는 무엇입니까?

좋아, 그래서 메모리를 보고 계속 실행시키고 싶어

     root@another:/etc/mysql/database_backups# free -mt
                 total       used       free     shared    buffers     cached
    Mem:           998        870        127          0         92        362
    -/+ buffers/cache:        415        582
    Swap:         2047         31       2016
    Total:        3046        902       2144

    root@another:/etc/mysql/database_backups# free -mts
    free: option requires an argument -- 's'
    usage: free [-b|-k|-m|-g] [-l] [-o] [-t] [-s delay] [-c count] [-V]
      -b,-k,-m,-g show output in bytes, KB, MB, or GB
      -l show detailed low and high memory statistics
      -o use old format (no -/+buffers/cache line)
      -t display total for RAM + swap
      -s update every [delay] seconds
      -c update [count] times
      -V display version information and exit

첫 번째 명령은 훌륭하게 작동하지만 s 플래그를 추가하면 오류가 발생하지만 이것이 사용 가능한 플래그라는 것을 분명히 알 수 있습니다.... 내가 뭘 잘못하고 있는지, 그리고 이를 수행하는 더 좋은 방법이 있는지에 대한 아이디어가 있으면

답변1

다음을 시도해 보십시오. 업데이트 빈도에 대해서는 이의가 없습니다.

free -mt -s 3

관련 정보