true
是一个 shell 内置命令,它的作用是返回一个成功(0)的退出状态
script.sh
的文件:touch script.sh
chmod +x script.sh
script.sh
,并输入以下内容:#!/bin/bash
# 使用 true 命令执行一个简单的条件判断
if true; then
echo "True condition is met."
else
echo "True condition is not met."
fi
保存并关闭文件。
在终端中运行脚本:
./script.sh
True condition is met.
这只是一个简单的示例,你可以根据需要使用 true
命令进行更复杂的脚本编程。请注意,通常情况下,我们会使用实际的条件和逻辑来代替 true
命令,以便根据特定情况执行不同的操作。