/src/run.sh: 8: cannot open ./input/input*: No such file
时间: 2023-12-29 21:02:56 浏览: 65
This error message means that the script is trying to open a file named "input*" in the "input" directory, but it cannot find any files that match that pattern.
There could be a few reasons for this error:
1. The "input" directory does not exist. You should check if the directory is present in the current working directory.
2. There are no files in the "input" directory that match the pattern "input*". You should check if there are any files in the directory and if their names match the pattern.
3. The script is looking for the file in the wrong directory. You should check if the script is looking for the file in the correct directory.
To fix this error, you can try creating the "input" directory and adding files with names that match the pattern "input*". Alternatively, you can modify the script to look for the file in a different directory.
阅读全文