Time

如何在一定秒數內對文件進行分類?

  • February 8, 2012

可能重複:

在指定時間內執行命令,如果時間超過則中止

翻遍了,沒找到答案。。。

簡單的問題:我怎樣才能在 45 秒內擷取一個大文件並將其輸出到螢幕或重定向到另一個文件。

謝謝!

你可以試試:

timeout 45 cat yourfile

另請參閱https://stackoverflow.com/questions/5161193/bash-script-that-kills-a-child-process-after-a-given-timeout

引用自:https://unix.stackexchange.com/questions/31210