Linux FAQ's & Manuals
- Linux Scripts
- Debian Install
- Bash For Beginners
- Bugzilla
- Consultants Guide
- GCC Manual
- Linux Command Line Tools
- Gnu Pascal Coding Standards
- Linux Installation Disk
- Labolatorium Linux(PL)
- Budowa systemu Linux(PL)
- Linux Dictionary
- Network Administrators
- Rescue Disk for Linux
- Red Hat Installation
- Red Hat Customization
- Red Hat Getting Started
- Red Hat Security
- Secure & Optimize
- Slackware Manual
- Suse Support
- Suse FAQ
Ars Technica: "Last month, Novell decided to push the limits of developer empowerment and perform an elaborate experiment in innovation by liberating the company's entire Linux engineering team for one full week of free hacking..."
Live, Learn, Complain
dot unplanned: "They seem to be there because some developers, instead of making a good interface, made an interface they thought would be good for users who were exactly like themselves, only total cretins..."
359 Choices
Editor's Note: 359 reasons why the "too many distros" argument is just plain wrong-headed.
Can Linspire Still Feed on Ubuntu (or Debian) Linux Codebase?
Boycott Novell: "Earlier this week, just less than a couple of months after their seemingly-friendly deal, Microsoft betrayed Linspire..."
Jason: A Little Help Please?
ConsortiumInfo: "I'm a bit mystified by a reference to me in a post that Microsoft's Jason Matusow added to his blog yesterday..."
9.8. summary
in this chapter, we discussed how repetitive commands can be incorporated in loop constructs. most common loops are built using the for, while or until statements, or a combination of these commands. the for loop executes a task a defined number of times. if you don't know how many times a command should execute, use either until or while to specify when the loop should end.
loops can be interrupted or reiterated using the break and continue statements.
a file can be used as input for a loop using the input redirection operator, loops can also read output from commands that is fed into the loop using a pipe.
the select construct is used for printing menus in interactive scripts. looping through the command line arguments to a script can be done using the shift statement.