I'm so sorry because I know this is a dumb question, but I've been trying to figure this out for about 2 hours and I can't figure it out. I've created a bash
file that uses some other programs (tcpdump
, tshark
). The bash runs as it should but on every line that I use tshark
, tcpdump
, etc. it says "command not found".
I'm using Cygwin on my Windows 7 VM. All of the files are in the same folder and I I've tried adding the locations of the other programs to the PATH variable. I tried commands such as export PATH=$PATH:filelocation
but when I do $PATH
those results aren't showing. How can I get these commands to be recognized?
Thank you.