32%
The Linux Command Line

The Linux Command Line

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

You've experienced the shiny, point-and-click surface of your Linux computer now dive below and explore its depths with the power of the command line. The Linux Command Line takes you from your very first terminal keystrokes to writing full programs in Bash, the most popular Linux shell. Along the way you'll learn the timeless skills handed down by generations of gray-bearded, mouse-shunning gurus: file navigation, environment configuration, command chaining, pattern matching with regular expressions, and more. In addition to that practical knowledge, author William Shotts reveals the philosophy behind these tools and the rich heritage that your desktop Linux machine has inherited from Unix supercomputers of yore. As you make your way through the book's short, easily-digestible chapters, you'll learn how to: Create and delete files, directories, and symlinks Administer your system, including networking, package installation, and process management Use standard input and output, redirection, and pipelines Edit files with Vi, the world s most popular text editor Write shell scripts to automate common or boring tasks Slice and dice text files with cut, paste, grep, patch, and sed Once you overcome your initial 'shell shock,' you'll find that the command line is a natural and expressive way to communicate with your computer. Just don't be surprised if your mouse starts to gather dust.

Table of Contents:
Dedication; Acknowledgments; Introduction; Why Use the Command Line?; What This Book Is About; Who Should Read This Book; What's in This Book; How to Read This Book; Prerequisites; Learning the Shell; Chapter 1: What Is the Shell?; 1.1 Terminal Emulators; 1.2 Your First Keystrokes; 1.3 Try Some Simple Commands; 1.4 Ending a Terminal Session; Chapter 2: Navigation; 2.1 Understanding the Filesystem Tree; 2.2 The Current Working Directory; 2.3 Listing the Contents of a Directory; 2.4 Changing the Current Working Directory; Chapter 3: Exploring the System; 3.1 More Fun with ls; 3.2 Determining a File's Type with file; 3.3 Viewing File Contents with less; 3.4 A Guided Tour; 3.5 Symbolic Links; Chapter 4: Manipulating Files and Directories; 4.1 Wildcards; 4.2 mkdir--Create Directories; 4.3 cp--Copy Files and Directories; 4.4 mv--Move and Rename Files; 4.5 rm--Remove Files and Directories; 4.6 ln--Create Links; 4.7 Let's Build a Playground; 4.8 Final Note; Chapter 5: Working with Commands; 5.1 What Exactly Are Commands?; 5.2 Identifying Commands; 5.3 Getting a Command's Documentation; 5.4 Creating Your Own Commands with alias; 5.5 Revisiting Old Friends; Chapter 6: Redirection; 6.1 Standard Input, Output, and Error; 6.2 Pipelines; 6.3 Final Note; Chapter 7: Seeing the World as the Shell Sees It; 7.1 Expansion; 7.2 Quoting; 7.3 Final Note; Chapter 8: Advanced Keyboard Tricks; 8.1 Command Line Editing; 8.2 Completion; 8.3 Using History; 8.4 Final Note; Chapter 9: Permissions; 9.1 Owners, Group Members, and Everybody Else; 9.2 Reading, Writing, and Executing; 9.3 Changing Identities; 9.4 Exercising Your Privileges; 9.5 Changing Your Password; Chapter 10: Processes; 10.1 How a Process Works; 10.2 Controlling Processes; 10.3 Signals; 10.4 More Process-Related Commands; Configuration and the Environment; Chapter 11: The Environment; 11.1 What Is Stored in the Environment?; 11.2 How Is the Environment Established?; 11.3 Modifying the Environment; 11.4 Final Note; Chapter 12: A Gentle Introduction to vi; 12.1 Why We Should Learn vi; 12.2 A Little Background; 12.3 Starting and Stopping vi; 12.4 Editing Modes; 12.5 Moving the Cursor Around; 12.6 Basic Editing; 12.7 Search and Replace; 12.8 Editing Multiple Files; 12.9 Saving Our Work; Chapter 13: Customizing the Prompt; 13.1 Anatomy of a Prompt; 13.2 Trying Some Alternative Prompt Designs; 13.3 Adding Color; 13.4 Moving the Cursor; 13.5 Saving the Prompt; 13.6 Final Note; Common Tasks and Essential Tools; Chapter 14: Package Management; 14.1 Packaging Systems; 14.2 How a Package System Works; 14.3 Common Package Management Tasks; 14.4 Final Note; Chapter 15: Storage Media; 15.1 Mounting and Unmounting Storage Devices; 15.2 Creating New Filesystems; 15.3 Testing and Repairing Filesystems; 15.4 Formatting Floppy Disks; 15.5 Moving Data Directly to and from Devices; 15.6 Creating CD-ROM Images; 15.7 Writing CD-ROM Images; 15.8 Extra Credit; Chapter 16: Networking; 16.1 Examining and Monitoring a Network; 16.2 Transporting Files over a Network; 16.3 Secure Communication with Remote Hosts; Chapter 17: Searching for Files; 17.1 locate--Find Files the Easy Way; 17.2 find--Find Files the Hard Way; Chapter 18: Archiving and Backup; 18.1 Compressing Files; 18.2 Archiving Files; 18.3 Synchronizing Files and Directories; Chapter 19: Regular Expressions; 19.1 What Are Regular Expressions?; 19.2 grep--Search Through Text; 19.3 Metacharacters and Literals; 19.4 The Any Character; 19.5 Anchors; 19.6 Bracket Expressions and Character Classes; 19.7 POSIX Basic vs. Extended Regular Expressions; 19.8 Alternation; 19.9 Quantifiers; 19.10 Putting Regular Expressions to Work; 19.11 Final Note; Chapter 20: Text Processing; 20.1 Applications of Text; 20.2 Revisiting Some Old Friends; 20.3 Slicing and Dicing; 20.4 Comparing Text; 20.5 Editing on the Fly; 20.6 Final Note; 20.7 Extra Credit; Chapter 21: Formatting Output; 21.1 Simple Formatting Tools; 21.2 Document Formatting Systems; 21.3 Final Note; Chapter 22: Printing; 22.1 A Brief History of Printing; 22.2 Printing with Linux; 22.3 Preparing Files for Printing; 22.4 Sending a Print Job to a Printer; 22.5 Monitoring and Controlling Print Jobs; Chapter 23: Compiling Programs; 23.1 What Is Compiling?; 23.2 Compiling a C Program; 23.3 Final Note; Writing Shell Scripts; Chapter 24: Writing Your First Script; 24.1 What Are Shell Scripts?; 24.2 How to Write a Shell Script; 24.3 More Formatting Tricks; 24.4 Final Note; Chapter 25: Starting a Project; 25.1 First Stage: Minimal Document; 25.2 Second Stage: Adding a Little Data; 25.3 Variables and Constants; 25.4 Here Documents; 25.5 Final Note; Chapter 26: Top-Down Design; 26.1 Shell Functions; 26.2 Local Variables; 26.3 Keep Scripts Running; 26.4 Final Note; Chapter 27: Flow Control: Branching with if; 27.1 Using if; 27.2 Exit Status; 27.3 Using test; 27.4 A More Modern Version of test; 27.5 (( ))--Designed for Integers; 27.6 Combining Expressions; 27.7 Control Operators: Another Way to Branch; 27.8 Final Note; Chapter 28: Reading Keyboard Input; 28.1 read--Read Values from Standard Input; 28.2 Validating Input; 28.3 Menus; 28.4 Final Note; 28.5 Extra Credit; Chapter 29: Flow Control: Looping with while and until; 29.1 Looping; 29.2 while; 29.3 Breaking out of a Loop; 29.4 until; 29.5 Reading Files with Loops; 29.6 Final Note; Chapter 30: Troubleshooting; 30.1 Syntactic Errors; 30.2 Logical Errors; 30.3 Testing; 30.4 Debugging; 30.5 Final Note; Chapter 31: Flow Control: Branching with case; 31.1 case; 31.2 Final Note; Chapter 32: Positional Parameters; 32.1 Accessing the Command Line; 32.2 Handling Positional Parameters En Masse; 32.3 A More Complete Application; 32.4 Final Note; Chapter 33: Flow Control: Looping with for; 33.1 for: Traditional Shell Form; 33.2 for: C Language Form; 33.3 Final Note; Chapter 34: Strings and Numbers; 34.1 Parameter Expansion; 34.2 Arithmetic Evaluation and Expansion; 34.3 bc--An Arbitrary-Precision Calculator Language; 34.4 Final Note; 34.5 Extra Credit; Chapter 35: Arrays; 35.1 What Are Arrays?; 35.2 Creating an Array; 35.3 Assigning Values to an Array; 35.4 Accessing Array Elements; 35.5 Array Operations; 35.6 Final Note; Chapter 36: Exotica; 36.1 Group Commands and Subshells; 36.2 Traps; 36.3 Asynchronous Execution; 36.4 Named Pipes; 36.5 Final Note; Colophon; Updates;


Best Sellers


Product Details
  • ISBN-13: 9781593273897
  • Publisher: No Starch Press,US
  • Publisher Imprint: No Starch Press,US
  • Depth: 32
  • Language: English
  • Returnable: N
  • Spine Width: 31 mm
  • Weight: 906 gr
  • ISBN-10: 1593273894
  • Publisher Date: 01 Nov 2012
  • Binding: Paperback
  • Height: 236 mm
  • No of Pages: 480
  • Series Title: English
  • Sub Title: A Complete Introduction
  • Width: 180 mm


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
The Linux Command Line
No Starch Press,US -
The Linux Command Line
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

The Linux Command Line

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA