$*
[email protected]
区别
shift 参数向前移一位,移动位置变量。
$?
$n
$#
$0
$!
$$
#!/bin/sh
pidpath=/tmp/p.pid
if [ -f "$pidpath" ]
then
kill -USR2 `cat $pidpath ` 》/dev/null 2>&1
rm -f $pidpath
fi
echo $$ > $pidpath
sleep 300
系统中某一个脚本同时只能运行一个的时候
bash内置命令
echo
eval
exec
export
read
shift
exit
。。等等很多
在终端中 man cd 可查看
字符子串
#开头
%结尾开始
时间: 2024-12-13 21:44:53