gpt4 book ai didi

bash - 运行此 bash 脚本时出现此 EOF 错误

转载 作者:行者123 更新时间:2023-12-05 04:17:43 24 4
gpt4 key购买 nike

我是 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

最佳答案

您在输出的行中缺少结束符 ":

echo "Creating Output Directory as: $_file

关于bash - 运行此 bash 脚本时出现此 EOF 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20894539/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com