gpt4 book ai didi

linux - 如何为 root checkin 破折号

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:18:02 26 4
gpt4 key购买 nike

bash 的标准解决方案,请参阅:

https://askubuntu.com/questions/15853/how-can-a-script-check-if-its-being-run-as-root

即:

#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi

在 dash 中不起作用,它正在慢慢成为 Linux 下的标准 shell。如何将以上内容移植到 dash?

最佳答案

使用id:

if [ "$(id -u)" -eq 0 ]; then
echo "I am root!"
fi

或者

#!/bin/sh
if [ "$(id -u)" -ne 0 ]; then
echo "This script must be run as root"
exit 1
fi

关于linux - 如何为 root checkin 破折号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25281008/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com