this post was submitted on 25 Aug 2025
24 points (100.0% liked)

Linux Questions

4024 readers
13 users here now

Linux questions Rules (in addition of the Lemmy.zip rules)

Tips for giving and receiving help

Any rule violations will result in disciplinary actions

founded 3 years ago
MODERATORS
 

Using a shell script, can I watch a folder and block program execution until a file in a certain folder changes?

you are viewing a single comment's thread
view the rest of the comments
[–] helloworld@lemmy.ml -1 points 10 months ago (1 children)

I really like this, replace compile with whatever command you desire I guess.

[–] hperrin@lemmy.ca 10 points 10 months ago (1 children)

This is a terrible solution. You will stress your IO for no reason.

[–] helloworld@lemmy.ml 0 points 10 months ago* (last edited 10 months ago) (3 children)

On the upside, you do not need to install the inotifywait package. md5sum already installed on my system haha

[–] hperrin@lemmy.ca 10 points 10 months ago

If you are a big fan of wasting disk performance, CPU cycles, and ultimately power.

[–] nublug@lemmy.blahaj.zone 2 points 10 months ago (1 children)
[–] helloworld@lemmy.ml 1 points 10 months ago (2 children)

I do not need to install anything/can work on bare install without internet connection?

[–] nublug@lemmy.blahaj.zone 1 points 10 months ago
[–] possiblylinux127@lemmy.zip 1 points 10 months ago* (last edited 10 months ago)

You should be able to tie into the kernel with some C programming if you want to go extra small.

[–] possiblylinux127@lemmy.zip 2 points 10 months ago

It isn't a terrible solution if you are checking infrequently just as ever 30 minutes.