我是bash脚本的小伙子。
以下是我不断遇到的两个错误: 第16行:寻找匹配的“”时意外的EOF 第18行:语法错误:意外的文件结尾
对于第16行,“匹配 我甚至不确定18号有什么问题 任何帮助将不胜感激。
#!/bin/bash
# Script for Capture
# sudo tshark -i2 -f "tcp" -P -S -l -w mbcap.pcap
_now=$(date +"%m_%d_%Y")
_file="~/captures/$_now.pcap"
echo "Starting capture to $_file..."
echo "Creating Output Directory as: $_file
touch $_file
chmod 666 $_file
echo "Which Interface Would you like to capture on:"
sudo tshark -D
read selection
sudo tshark -i$selection -f "tcp" -P -S -l -w $_file
答案 0 :(得分:2)
您在输出的行上错过了结束"
:
echo "Creating Output Directory as: $_file