如何撤消 usermod -e?

如何撤消 usermod -e?

我正在使用 Ubuntu 18.04。

我使用了命令

usermod -e YYYY_MM_DD user

现在,该用户的账户已经过期。

我可以输入什么命令来删除用户帐户的到期日期?

答案1

您可以通过usermod -e再次运行来撤消它,这次传递一个空字符串来代替EXPIRE_DATE字符串 ex。

sudo usermod -e '' user

man usermod

   -e, --expiredate EXPIRE_DATE
       The date on which the user account will be disabled. The date is
       specified in the format YYYY-MM-DD.

       An empty EXPIRE_DATE argument will disable the expiration of the
       account.

相关内容