- 论坛徽章:
- 0
|
sync_1521 发表于 2015-11-08 20:36 ![]()
1.if [ test -w $filename -o test -r $filename ];
[]等价于test命令 所以 你里面的test可以去掉
...
小弟照着大侠的指点去掉了test,脚本执行是成功的,但结果有出入,请看
[root@binzai ~]# ls -l /root/passwd
-r--r--r--. 1 root root 455 Nov 8 15:37 /root/passwd
小弟的脚本内容是:
#!/bin/bash
filename=/root/passwd
if [ -w $filename -a -r $filename ];then
echo "is ok"
else
echo "is false"
fi
如果是可读并可写才输出 is ok
但这个passwd文件它只有读权限呀,这个脚本名称为right
[root@binzai ~]# sh -x right
+ filename=/root/passwd
+ '[' -w /root/passwd -a -r /root/passwd ']'
+ echo 'is ok'
is ok
使用了大虾提供的sed删除空行的记录,没有成功,请看:
[root@binzai ~]# sed -i '13,22/^$/d' kongge
sed: -e expression #1, char 6: unknown command: `/'
|
|