访问shell脚本中的文件

时间:2014-02-26 19:52:47

标签: shell wc

我正在尝试访问脚本中的文件email.txt(.txt文件目录和脚本相同)

!#bin/bash
total="$(wc -l < email.txt | tr -d ' ')"
echo "$total"

显示许可被拒绝。 谢谢你的帮助

1 个答案:

答案 0 :(得分:0)

嗯,你的第一个角色至少有一个语法错误。接下来给你的脚本执行权限,

$ cat test.sh
#!/bin/bash

total="$(wc -l < email.txt | tr -d ' ')"
echo "$total"
$ chmod 755 test.sh
$ ./test.sh
0

但后来我有一个空的“email.txt”文件。