bash portscanner command not found
This error message indicates that the command "portscanner" is not recognized by the bash shell. This may be because the command is not installed on your system or it is not included in your system's PATH variable.
To resolve this issue, you should check if the command is installed and available in your system's PATH. You can do this by running the following command:
echo $PATH
This will display a list of directories where the shell searches for executable files. If the directory where the "portscanner" command is installed is not included in the PATH, you can add it by modifying the PATH environment variable. For example, if the command is installed in the directory "/usr/local/bin", you can add it to the PATH by running the following command:
export PATH=$PATH:/usr/local/bin
This will add the "/usr/local/bin" directory to the PATH variable. After this, you should be able to run the "portscanner" command without any issues
原文地址: https://www.cveoy.top/t/topic/cxw9 著作权归作者所有。请勿转载和采集!