嵌入式LINUX系统开发教程pdf下载
一、Linux 的缺省 Shell 为 bash(Bourne Again Shell)
二、创建脚本文件遵循的步骤
1、使用编辑器编辑脚本代码文件
2、确认脚本文件的第一行是:#! /bin/bash
3、保存脚本文件并,退出编辑器
4、使用“chmod u+x 脚本文件名” ,标注脚本
文件的可执行属性
5、使用“./脚本文件” ,执行脚本
如 vi test_shell输入如下测试程序
#! /bin/sh
echo –n "please input your name:"
read name
echo "thanks,"
echo $name
三、shell脚本语言中符号表示的含义:
$n $1 the first parameter,$2 the second...
$# The number of command-line parameters.
$0 The name of current program.
$? Last command or function's return value.
$$ The program's PID.
$! Last program's PID.
$@ Save all the parameters.
转载请注明:谷谷点程序 » Linux 下创建脚本文件遵循的步骤