“We believe in this policy,” Charest said. “This policy is going to go ahead.” “Insanity: doing the same thing over and over again and expecting different results.” – Albert Einstein... Read More
I stubled across this from a colleague at my new gig: #!/bin/bash if uname -r | { IFS=.- read -r a b c _; [ "$((a*10000+b*100+c))" -lt 20622 ]; }; then echo 'Your kernel is too old!'; else echo 'Your kernel is 2.6.22 or newer!' fi... Read More