bash:utime:找不到命令

bash:utime:找不到命令

我一直在处理一些任务,并且曾经utime限制某些程序的执行时间。起初运行良好,但几次通话后就停止了。我进行了检查history,以便了解可能导致此问题的原因,但没有发现任何可疑的内容:

 1952  time find /usr > users
 1953  less users 
 1954  ulimit -a
 1955  ulimit -t 1
 1956  time find /usr > users_limited
 1957  time find /etc > etc_limited
 1958  sudo time find /etc > etc_limited
 1959  time find /Desktop > cos
 1960  time find /home/two/Desktop/ > desktop
 1961  ulimit -t 1; time find /home/two/pycharm-community-2020.2.2/ > pycharm
 1962  ls
 1963  less pycharm 
 1964  rm pycharm etc_limited users_limited desktop cos
 1965  ls
 1966  ulimit -t 1
 1967  time find /usr > users_new
 1968  utime -t 1; time ../../pycharm-2020.2.2/bin/pycharm.sh > pycharm
 1969  utime -t 5; time ../../pycharm-2020.2.2/bin/pycharm.sh > pycharm
 1970  utime -t 5
 1971  utime

它在执行第 1969 条指令时停止工作,然后我开始接收bash: utime: command not found以下呼叫。我使用 Debian 10。

我已经尝试过:

  1. 检查我的$PATH是否已更改,但没有更改;
  2. 调用type timeand type utime,第一个返回time is a shell keyword,后者返回bash: type: utime: not found

答案1

根据您的历史记录,您使用过ulimit(not utime)。也许是打字错误?

相关内容