Just another way to waste resources.
Archive of entries posted by
Remove duplicates, but keeping only the last occurrence
Again on IRC, somebody asked how to remove duplicates from a file, but keeping only the last occurrence of each item. The classic awk idiom awk '!a[$0]++' prints only the first instance of every line. So if the input is, for example foo bar baz foo xxx yyy bar the "normal" output (ie using the [...]
Buildbot in 5 minutes
I wish I had this explanation from the beginning
Some tips on RPM conditional macros
You may have been bitten by this.
Running local script remotely (with arguments)
Some ways to remotely run a local script.