gpt4 book ai didi

linux - 我如何使用linux编写基本脚本?

转载 作者:太空宇宙 更新时间:2023-11-04 06:06:08 24 4
gpt4 key购买 nike

这个命令有什么作用?

!/bin/bash

我的第一个脚本

clear
echo (I don't know what will come after echo , can you help me with that too?)
./hello.shell

最佳答案

#!/bin/bash 称为 shebang (您错过了前导 #)。它告诉哪个程序将执行您的脚本。

clear 用于清除屏幕。

echo 将以下参数输出到标准输出(默认情况下是您的终端)。但是您不能用括号将字符串括起来,因为它用于在子 shell 中对命令进行分组。如果你想打印 (...),你也必须使用双引号:

echo "(I don't know what will come after echo , can you help me with that too?)"

./hello.shell 将在您使用 chmod +x hello.shell 授予脚本执行权限后执行您的脚本。

请注意,shell 脚本常用的扩展名是 .sh,而不是 .shell

有关更多信息,请尝试这些链接:

http://mywiki.wooledge.org/BashGuide/

http://www.tldp.org/LDP/Bash-Beginners-Guide/html/

关于linux - 我如何使用linux编写基本脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36604296/

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