Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试访问脚本中的文件 email.txt(.txt 文件的目录和脚本相同)
!#bin/bash total="$(wc -l < email.txt | tr -d ' ')" echo "$total"
它显示权限被拒绝。感谢您的任何帮助
好吧,您的第一个字符至少有一个语法错误。接下来给你的脚本执行权限,
$ cat test.sh #!/bin/bash total="$(wc -l < email.txt | tr -d ' ')" echo "$total" $ chmod 755 test.sh $ ./test.sh 0
但后来我有一个空的“email.txt”文件。