5 ms·
The rule we have is that anything that is not idempotent and not run as a matter of daily routine must dry-run by default, and not take action unless you pass -
by mmcclimon 4y ago
The rule we have is that anything that is not idempotent and not run as a matter of daily routine must dry-run by default, and not take action unless you pass --really. This has saved my bacon many times!
- maweki 4y agoDeleting actually is idempotent. Doing it twice wont be different from doing it once.
- maccard 4y agoDeleting * may not be though. Your selection needs to be idempotent.
- maweki 4y agoidempotency means that f(X) = f(f(X)). Modifying the X inbetween is not allowed. Is there really an initial environment where rm * ; rm * ; does something different than rm * once?
- einsty 4y agoIn the case of any live system, i would say yes. Additional, and different, files could have appeared on the file system in between the times of each rm *.
- mikeryan 4y ago* is just short hand for a list of files. Calling rm with the same list of files will have the same results if you call it multiple times. That’s idempotent. Your example is changing the list of files, or arguments to rm between runs. Same as pc85’s example where the timestamp argument changes.
- pc86 4y agoIn addition to what einsty said (which is 100% accurate), if you're deleting aged records, on any system of sufficient size objects will become aged beyond your threshold between executions.
- jameshart 4y agoRight. You can kind of consider the state of a filesystem on which you occasionally run rm * purges to be a system whose state is made up of ‘stuff in the filesystem’ and ‘timestamp the last purge was run’. If you run rm * multiple times, the state of the system changes each time because that ‘timestamp’ ends up being different each time. But if instead you run an rm on files older than a fixed timestamp, multiple times, the resulting filesystem is idempotent with respect to that operation, because the timestamp ends up set to the same value, and the filesystem in every case contains all the files added later than that timestamp.
- hansel_der 4y ago> Is there really an initial environment where rm * ; rm * ; does something different than rm * once? if * expands to the rm binary itself, maybe.
- maweki 4y agoHow is the system different after the first and after the second call?
- jgoldshlag 4y agoIf there is an rm executable in the current directory, and also one later in your PATH, the second run might use a different rm that could do whatever it wants to
- dotancohen 4y agoThis is actually a likely scenario, as it is common to alias rm to rm -i. Though your bash config will still run after .bashrc is nuked, some might wrap with a script instead of aliasing (e.g., to send items to Trash).
- hansel_der 4y ago# rm rm # rm rm rm: command not found
- zrail 4y agoEarly in my career I used --yes-i-really-mean-it and then a coworker removed it with the commit message "remove whimsy". T'was a sad day.