a { font-family: ‘Inconsolata’; font-size: 130%; } MySQL Documentation Perl Documentation FLOSS Manuals GNU debugger GDB Documentation GNU text editor emacs manual PHP Language Documentation GNU C Library Documentation GNU compiler collection Documentation MarkUp Languages Related Documentation
Daily Archives: May 30, 2012
troubleshooting Part 1
commandline session $ 4.2.20 5 176—> cat program.sh #!/bin/bash # trouble: script to demonstrate common errors number=1 if [ $number = 1 ]; then echo “Number is equal to 1.” else echo “Number is not equal to 1.” fi $ 4.2.20 6 177—> sh program.sh Number is equal to 1. $ 4.2.20 7 178—> Missing …