高级Bash脚本编程指南/第一部分. 热身:修订间差异

来自Ubuntu中文
跳到导航跳到搜索
创建新页面为 '先打开一个文本编辑器,输入以下内容。 #!/bin/sh echo "hello word!,"; 然后保存成helloword.执行chmod +x helloword. 接下来执行 ./helloword. 你就...'
 
Luojie-dune留言 | 贡献
无编辑摘要
第1行: 第1行:
先打开一个文本编辑器,输入以下内容。
#先打开一个文本编辑器,输入以下内容。
#!/bin/sh
  #!/bin/sh
echo "hello word!,";
  echo "hello word!,";


然后保存成helloword.执行chmod +x helloword.  接下来执行 ./helloword.
#保存成名为 helloword 的文件
#执行 chmod +x helloword
#执行 ./helloword.


你就会看到结果了。
你就会看到结果了。
恭喜你,你的第一个shell程序已经成功。
恭喜,你的第一个shell程序已经成功。
 
[[Category: 入门]]

2010年4月17日 (六) 06:35的版本

  1. 先打开一个文本编辑器,输入以下内容。
 #!/bin/sh
 echo "hello word!,";
  1. 保存成名为 helloword 的文件
  2. 执行 chmod +x helloword
  3. 执行 ./helloword.

你就会看到结果了。 恭喜,你的第一个shell程序已经成功。