Unix Shell Scripting Quotes

We've searched our database for all the quotes and captions related to Unix Shell Scripting. Here they are! All 2 of them:

Chapter 5-"Now THAT'S Leverage" discusses the idea of "software leverage," where reusing components results in greater impact. We see how the use of shell scripts achieves a high degree of leverage.
Mike Gancarz (The UNIX Philosophy)
Convert Text Files from Windows Format to Linux Format and Vice-Versa $ dos2unix $ unix2dos Sooner or later you're going to be sent a file or download one that uses a pair of CR (carriage return) and LF (line feed) characters to terminate lines in the file.  Those type of files are Windows/DOS formatted.  Unix-like operating systems simply use the LF character to terminate a line.  Sometimes this can cause issues.  To convert the file to a unix-like format, use dos2unix.  To examine the line termination characters use "cat -A" or the "file" command. $
Jason Cannon (Command Line Kung Fu: Bash Scripting Tricks, Linux Shell Programming Tips, and Bash One-liners)