Monthly Archives: May 2012
Debug
Web
Build
Beautiful Work
Linux Kernel Development
Debian Research
apropos . search manuals
commandline session $ 4.2.20 4 207—> apropos “memory management” XtAsprintf (3) – memory management functions XtCalloc (3) – memory management functions XtFree (3) – memory management functions XtMalloc (3) – memory management functions XtNew (3) – memory management functions XtNewString (3) – memory management functions XtRealloc (3) – memory management functions $ 4.2.20 5 208—> …
Reference Manuals/Documentation
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
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 …