universality of I/O

commandline session $ 4.2.36 6 504—> sudo cp yt-chanrip /dev/tty43 [sudo] password for jeffrin: $ 4.2.36 7 505—> tail -f /var/log/syslog tail: cannot open `/var/log/syslog’ for reading: Permission denied $ 4.2.36 8 506—> sudo tail -f /var/log/syslog Jan 5 21:04:54 debian — MARK — Jan 5 21:09:01 debian /USR/SBIN/CRON[4789]: (root) CMD ( [ -x /usr/lib/php5/maxlifetime …

PHILOSOPHY

MAKE SOLUTIONS THAT JUST WORKS DO EASY WORK IN A PLAYFUL WAY KNOWLEDGE AND SKILL DEVELOPED FROM PLAY CAN BE USED FOR WORK. HENCE KNOWLEDGE FOR WORK CAN BE A BYPRODUCT OF PLAY PLAY NEEDS LEARNING PROCESS EXCITEMENT CAN BE INTEGRATED BY SHARING KNOWLEDGE IT IS NOT ALWAYS NECESSARY TO FINISH THE CURRENT TASK BEFORE …

sed . regular expressions

commandline session $ 4.1.5 1 270—> echo “fastest 1000 cars” | sed “s/1000/2000/” fastest 2000 cars $ 4.1.5 2 271—> echo “fastest 1000 cars” | sed “s/1*/2000/” 2000fastest 1000 cars $ 4.1.5 3 272—> $ 4.1.5 3 272—> echo “fastest 1000 cars” | sed “s/2*/2000/” 2000fastest 1000 cars $ 4.1.5 4 273—> echo “fastest 1000 …

$_ indicates exactly the last parameter of your last command (GNU Bash)

commandline session $ 4.2.29 8 507—> ls Algorithms bookmark bugs-general debian-howtos firewall kernel linux README beautifulwork books config-files Docs https: language ovlfose $ 4.2.29 9 508—> ls $_ ls: cannot access ls: No such file or directory $ 4.2.29 10 509—> ls vm ls: cannot access vm: No such file or directory $ 4.2.29 11 …