sudo: command not found

有时候一些命令参数不能直接用sudo, 会提示找不到命令:

sudo:  command not found

这时候需要用 [sudo sh -c + ‘命令参数’] 转换一次:

sudo sh -c 'ulimit -s 8192'

你可能感兴趣的:(linux,脚本,linux,centos,ubuntu)