Questions tagged [bash-scripting]
Bash scripting is making scripts in the Bash shell language.
1 questions from the last 7 days
4
votes
2
answers
176
views
Why can’t I remove a file inside a while-read loop with a Bash script?
I have a polling script that will occasionally pop out the name of a file to delete. The file to delete will always be located on an NFS-mounted filesystem.
So I wrote this Bash script:
#!/bin/bash
/...