|Listed in category:
Have one to sell?

In a Nutshell (o'Reilly) Ser.: Learning the Bash Shell : Unix Shell Programming

US $25.00
or Best Offer
Condition:
Like New
Shipping:
Free USPS Media MailTM.
Located in: Sun Valley, California, United States
Delivery:
Estimated between Thu, Sep 26 and Tue, Oct 1 to 43230
Delivery time is estimated using our proprietary method which is based on the buyer's proximity to the item location, the shipping service selected, the seller's shipping history, and other factors. Delivery times may vary, especially during peak periods.
Returns:
Seller does not accept returns.
Payments:
      
Earn up to 5x points when you use your eBay Mastercard®. Learn moreabout earning points with eBay Mastercard

Shop with confidence

eBay Money Back Guarantee
Get the item you ordered or your money back. Learn moreeBay Money Back Guarantee - opens new window or tab
Seller assumes all responsibility for this listing.
eBay item number:234921114850

Item specifics

Condition
Like New: A book that looks new but has been read. Cover has no visible wear, and the dust jacket ...
ISBN
9780596009656
Subject Area
Computers
Publication Name
Learning the Bash Shell : Unix Shell Programming
Publisher
O'reilly Media, Incorporated
Item Length
9.3 in
Subject
Operating Systems / Unix, Operating Systems / Linux, Operating Systems / Apple (Mac OS & iOS)
Publication Year
2005
Type
Textbook
Format
Trade Paperback
Language
English
Item Height
0.9 in
Author
Cameron Newham
Item Weight
21.7 Oz
Item Width
7 in
Number of Pages
352 Pages

About this product

Product Identifiers

Publisher
O'reilly Media, Incorporated
ISBN-10
0596009658
ISBN-13
9780596009656
eBay Product ID (ePID)
45582555

Product Key Features

Number of Pages
352 Pages
Language
English
Publication Name
Learning the Bash Shell : Unix Shell Programming
Publication Year
2005
Subject
Operating Systems / Unix, Operating Systems / Linux, Operating Systems / Apple (Mac OS & iOS)
Type
Textbook
Author
Cameron Newham
Subject Area
Computers
Format
Trade Paperback

Dimensions

Item Height
0.9 in
Item Weight
21.7 Oz
Item Length
9.3 in
Item Width
7 in

Additional Product Features

Edition Number
3
Intended Audience
Scholarly & Professional
LCCN
2005-283757
Dewey Edition
22
Illustrated
Yes
Dewey Decimal
005.4/38
Table Of Content
Preface; bash Versions; Summary of bash Features; Intended Audience; Code Examples; Chapter Summary; Conventions Used in This Handbook; We'd Like to Hear from You; Using Code Examples; Safari Enabled; Acknowledgments for the First Edition; Acknowledgments for the Second Edition; Acknowledgments for the Third Edition;Chapter 1: bash Basics; 1.1 What Is a Shell?; 1.2 Scope of This Book; 1.3 History of UNIX Shells; 1.4 Getting bash; 1.5 Interactive Shell Use; 1.6 Files; 1.7 Input and Output; 1.8 Background Jobs; 1.9 Special Characters and Quoting; 1.10 Help;Chapter 2: Command-Line Editing; 2.1 Enabling Command-Line Editing; 2.2 The History List; 2.3 emacs Editing Mode; 2.4 vi Editing Mode; 2.5 The fc Command; 2.6 History Expansion; 2.7 readline; 2.8 Keyboard Habits;Chapter 3: Customizing Your Environment; 3.1 The .bash_profile, .bash_logout, and .bashrc Files; 3.2 Aliases; 3.3 Options; 3.4 Shell Variables; 3.5 Customization and Subprocesses; 3.6 Customization Hints;Chapter 4: Basic Shell Programming; 4.1 Shell Scripts and Functions; 4.2 Shell Variables; 4.3 String Operators; 4.4 Command Substitution; 4.5 Advanced Examples: pushd and popd;Chapter 5: Flow Control; 5.1 if/else; 5.2 for; 5.3 case; 5.4 select; 5.5 while and until;Chapter 6: Command-Line Options and Typed Variables; 6.1 Command-Line Options; 6.2 Typed Variables; 6.3 Integer Variables and Arithmetic; 6.4 Arrays;Chapter 7: Input/Output and Command-Line Processing; 7.1 I/O Redirectors; 7.2 String I/O; 7.3 Command-Line Processing;Chapter 8: Process Handling; 8.1 Process IDs and Job Numbers; 8.2 Job Control; 8.3 Signals; 8.4 trap; 8.5 Coroutines; 8.6 Subshells; 8.7 Process Substitution;Chapter 9: Debugging Shell Programs; 9.1 Basic Debugging Aids; 9.2 A bash Debugger;Chapter 10: bash Administration; 10.1 Installing bash as the Standard Shell; 10.2 Environment Customization; 10.3 System Security Features;Chapter 11: Shell Scripting; 11.1 What's That Do?; 11.2 Starting Up; 11.3 Potential Problems; 11.4 Don't Use bash;Chapter 12: bash for Your System; 12.1 Obtaining bash; 12.2 Unpacking the Archive; 12.3 What's in the Archive; 12.4 Who Do I Turn to?;Appendix A: Related Shells; A.1 The Bourne Shell; A.2 The IEEE 1003.2 POSIX Shell Standard; A.3 The Korn Shell; A.4 pdksh; A.5 zsh; A.6 Shell Clones and Unix-like Platforms;Appendix B: Reference Lists; B.1 Invocation; B.2 Prompt String Customizations; B.3 Built-In Commands and Reserved Words; B.4 Built-In Shell Variables; B.5 Test Operators; B.6 set Options; B.7 shopt Options; B.8 I/O Redirection; B.9 emacs Mode Commands; B.10 vi Control Mode Commands;Appendix C: Loadable Built-Ins;Appendix D: Programmable Completion;Colophon;
Synopsis
O'Reilly's bestselling book on Linux's bash shell is at it again. Now that Linux is an established player both as a server and on the desktop Learning the bash Shell has been updated and refreshed to account for all the latest changes. Indeed, this third edition serves as the most valuable guide yet to the bash shell.As any good programmer knows, the first thing users of the Linux operating system come face to face with is the shell the UNIX term for a user interface to the system. In other words, it's what lets you communicate with the computer via the keyboard and display. Mastering the bash shell might sound fairly simple but it isn't. In truth, there are many complexities that need careful explanation, which is just what Learning the bash Shell provides.If you are new to shell programming, the book provides an excellent introduction, covering everything from the most basic to the most advanced features. And if you've been writing shell scripts for years, it offers a great way to find out what the new shell offers. Learning the bash Shell is also full of practical examples of shell commands and programs that will make everyday use of Linux that much easier. With this book, programmers will learn: How to install bash as your login shell The basics of interactive shell use, including UNIX file and directory structures, standard I/O, and background jobs Command line editing, history substitution, and key bindings How to customize your shell environment without programming The nuts and bolts of basic shell programming, flow control structures, command-line options and typed variables Process handling, from job control to processes, coroutines and subshells Debugging techniques, such as trace and verbose modes Techniques for implementing system-wide shell customization and features related to system security, O'Reilly's bestselling book on Linux's bash shell is at it again. Now that Linux is an established player both as a server and on the desktop Learning the bash Shell has been updated and refreshed to account for all the latest changes. Indeed, this third edition serves as the most valuable guide yet to the bash shell. As any good programmer knows, the first thing users of the Linux operating system come face to face with is the shell the UNIX term for a user interface to the system. In other words, it's what lets you communicate with the computer via the keyboard and display. Mastering the bash shell might sound fairly simple but it isn't. In truth, there are many complexities that need careful explanation, which is just what Learning the bash Shell provides. If you are new to shell programming, the book provides an excellent introduction, covering everything from the most basic to the most advanced features. And if you've been writing shell scripts for years, it offers a great way to find out what the new shell offers. Learning the bash Shell is also full of practical examples of shell commands and programs that will make everyday use of Linux that much easier. With this book, programmers will learn: How to install bash as your login shell The basics of interactive shell use, including UNIX file and directory structures, standard I/O, and background jobs Command line editing, history substitution, and key bindings How to customize your shell environment without programming The nuts and bolts of basic shell programming, flow control structures, command-line options and typed variables Process handling, from job control to processes, coroutines and subshells Debugging techniques, such as trace and verbose modes Techniques for implementing system-wide shell customization and features related to system security, The first thing Linux users face is the "shell"- a Unix termthat refers to the system's user interface. The bash shell,created by the Free Software Foundation, is both a userinterface and programming language, with features such ascommand line editing, key bindings, integrated programmingfeatures, and other ways to customize the Linux ......, O'Reilly's bestselling book on Linux's bash shell is at it again. Now that Linux is an established player both as a server and on the desktop Learning the bash Shell has been updated and refreshed to account for all the latest changes. Indeed, this third edition serves as the most valuable guide yet to the bash shell. As any good programmer knows, the first thing users of the Linux operating system come face to face with is the shell the UNIX term for a user interface to the system. In other words, it's what lets you communicate with the computer via the keyboard and display. Mastering the bash shell might sound fairly simple but it isn't. In truth, there are many complexities that need careful explanation, which is just what Learning the bash Shell provides.If you are new to shell programming, the book provides an excellent introduction, covering everything from the most basic to the most advanced features. And if you've been writing shell scripts for years, it offers a great way to find out what the new shell offers. Learning the bash Shell is also full of practical examples of shell commands and programs that will make everyday use of Linux that much easier. With this book, programmers will learn: How to install bash as your login shell The basics of interactive shell use, including UNIX file and directory structures, standard I/O, and background jobs Command line editing, history substitution, and key bindings How to customize your shell environment without programming The nuts and bolts of basic shell programming, flow control structures, command-line options and typed variables Process handling, from job control to processes, coroutines and subshells Debugging techniques, such as trace and verbose modes Techniques for implementing system-wide shell customization and features related to system security, O'Reilly's bestselling book on Linux's bash shell is at it again. Now that Linux is an established player both as a server and on the desktop "Learning the bash Shell has been updated and refreshed to account for all the latest changes. Indeed, this third edition serves as the most valuable guide yet to the bash shell. As any good programmer knows, the first thing users of the Linux operating system come face to face with is the shell the UNIX term for a user interface to the system. In other words, it's what lets you communicate with the computer via the keyboard and display. Mastering the bash shell might sound fairly simple but it isn't. In truth, there are many complexities that need careful explanation, which is just what "Learning the bash Shell provides. If you are new to shell programming, the book provides an excellent introduction, covering everything from the most basic to the most advanced features. And if you've been writing shell scripts for years, it offers a great way to find out what the new shell offers. "Learning the bash Shell is also full of practical examples of shell commands and programs that will make everyday use of Linux that much easier. With this book, programmers will learn: How to install bash as your login shell The basics of interactive shell use, including UNIX file and directory structures, standard I/O, and background jobs Command line editing, history substitution, and key bindings How to customize your shell environment without programming The nuts and bolts of basic shell programming, flow control structures, command-line options and typed variables Process handling, from job control to processes, coroutines andsubshells Debugging techniques, such as trace and verbose modes Techniques for implementing system-wide shell customization and features related to system security
LC Classification Number
WA76.76.O63

Item description from the seller

2014.yeten

2014.yeten

100% positive feedback
86 items sold
Joined Aug 2014

Product ratings and reviews

4.7
3 product ratings
  • 2 users rated this 5 out of 5 stars
  • 1 users rated this 4 out of 5 stars
  • 0 users rated this 3 out of 5 stars
  • 0 users rated this 2 out of 5 stars
  • 0 users rated this 1 out of 5 stars

Most relevant reviews

  • excellent read

    My Linux guru at work recommended this book to me to learn Bash. He spoke highly of it which gave me high expectations from the start. Simply put, I was pleased. It's a generally easy read. My one reservation on the book is I question its ability to also serve as a desk reference. Otherwise, it's perfect for the beginner and you'll surprise your Linux guru with what you can do after reading it.

  • Best Reference there is.

    bought this for my son that has decided to learn how to be a linux admin. he is now trying to play stump the parent! i have bough many of the oreilly books and continue to rely on them as the bible for all things technical.

  • good title

    i'm into computers so i needed this book to help me with some of my programs. this is a good book i recommed others to read it.