bash编程的知识点:位置变量和特殊变量
位置参数变量:
scirpt1.sh arg1 arg2 ...
$0 $1 $2 ... ${10} ...
$0: 即为文件本身
脚本注释:除第一行的shebang之外,任何以#开头的行都表示为注释信息,会被解释器忽略;
# information
特殊变量:
$#:位置参数变量的个数,
[email protected]:位置参数列表
$*:位置参数列表
练习:写一个脚本,能接受一个参数,此参数为系统上的某文本文件路径;
(1) 显示此文件的总行数;
#!/bin/bash
filedir=$1
lines=`wc -l $filedir |cut -d ‘ ‘ -f 1`
echo "$filedir lines is :$lines"
时间: 2024-10-26 13:46:25