./myscript.shHow do I fix this error message and run the script?
/bin/bash: bad interpreter: Text file busy
A. This error means some other process or user is accessing your file. Your script file is open and hence bash giving out this error.
To list open file use lsof command, enter:
# lsof | grep myscript.sh
Sample output:
cat 4995 root 1w REG 8,2 1374 28409914 /home/vivek/myscript.shYou can wait or simply kill those process with kill command:
cat 5031 root 1w REG 8,2 1374 28409914 /home/vivek/myscript.sh
cat 5069 root 1w REG 8,2 1374 28409914 /home/vivek/myscript.sh
# kill 4995 5031 5069
Now, try to run script again:
# ./myscript.sh
No comments:
Post a Comment