gpt4 book ai didi

c - 如何为 Linux 设备设置自定义命令?

转载 作者:行者123 更新时间:2023-11-30 17:40:21 26 4
gpt4 key购买 nike

我想设置一个具有自定义 bash 提示符的应用程序,其中普通的 linux 命令将不会运行。相反,它将运行我们预先配置的命令。

例如,启动设备时将显示

help [On typing this command]
show licence
show status
....

最佳答案

您可以通过 readline 创建自定义 bash 提示符图书馆

您可以编写 C 代码,例如:

while(1)
{
command = readline ("# "); ///readline will accept your custom command

////Process your command

add_history (command); ///This will add your command in history

free (command);

}

您需要将此应用程序添加到/etc/init.d/rcS 的最后一行,以便在启动时执行它

关于c - 如何为 Linux 设备设置自定义命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21544256/

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