Shell programming in unix linux and os x

Shell Programming in Unix, Linux and OS X, Fourth Edition

Shell Programming in Unix, Linux and OS X, Fourth Edition

Read it now on the O’Reilly learning platform with a 10-day free trial.

O’Reilly members get unlimited access to books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.

Book description

Shell Programming in Unix, Linux and OS X is a thoroughly updated revision of Kochan and Wood’s classic Unix Shell Programming tutorial. Following the methodology of the original text, the book focuses on the POSIX standard shell, and teaches you how to develop programs in this useful programming environment, taking full advantage of the underlying power of Unix and Unix-like operating systems.

After a quick review of Unix utilities, the book’s authors take you step-by-step through the process of building shell scripts, debugging them, and understanding how they work within the shell’s environment. All major features of the shell are covered, and the large number of practical examples make it easy for you to build shell scripts for your particular applications. The book also describes the major features of the Korn and Bash shells.

1 A Quick Review of the Basics

5 Can I Quote You on That?

8 ‘Round and ‘Round She Goes

9 Reading and Printing Data

14 Interactive and Nonstandard Shell Features

Table of contents

  1. About This E-Book
  2. Title Page
  3. Copyright Page
  4. Developer’s Library
  5. Contents at a Glance
  6. Table of Contents
  7. About the Authors
  8. We Want to Hear from You!
  9. Reader Services
  10. Introduction
    1. How This Book Is Organized
    2. Accessing the Free Web Edition
    1. Some Basic Commands
      1. Displaying the Date and Time: The date Command
      2. Finding Out Who’s Logged In: The who Command
      3. Echoing Characters: The echo Command
      1. Listing Files: The ls Command
      2. Displaying the Contents of a File: The cat Command
      3. Counting the Number of Words in a File: The wc Command
      4. Command Options
      5. Making a Copy of a File: The cp Command
      6. Renaming a File: The mv Command
      7. Removing a File: The rm Command
      1. The Home Directory and Pathnames
      2. Displaying Your Working Directory: The pwd Command
      3. Changing Directories: The cd Command
      4. More on the ls Command
      5. Creating a Directory: The mkdir Command
      6. Copying a File from One Directory to Another
      7. Moving Files Between Directories
      8. Linking Files: The ln Command
      9. Removing a Directory: The rmdir Command
      1. The Asterisk
      2. Matching Single Characters
      1. Spaces in Filenames
      2. Other Weird Characters
      1. Standard Input and Standard Output
      2. Output Redirection
      3. Input Redirection
      1. Filters
      1. Typing More Than One Command on a Line
      2. Sending a Command to the Background
      3. The ps Command
      1. The Kernel and the Utilities
      2. The Login Shell
      3. Typing Commands to the Shell
      4. The Shell’s Responsibilities
        1. Program Execution
        2. Variable and Filename Substitution
        3. I/O Redirection
        4. Hooking up a Pipeline
        5. Environment Control
        6. Interpreted Programming Language
        1. Regular Expressions
          1. Matching Any Character: The Period (.)
          2. Matching the Beginning of the Line: The Caret (^)
          3. Matching the End of the Line: The Dollar Sign $
          4. Matching a Character Set: The [. ] Construct
          5. Matching Zero or More Characters: The Asterisk (*)
          6. Matching a Precise Number of Subpatterns: \
          7. Saving Matched Characters: \(. \)
          1. The -d and -f Options
          1. The -d Option
          2. The -s Option
          1. The -n Option
          2. Deleting Lines
          1. The -s Option
          2. The –d Option
          1. Regular Expressions and grep
          2. The -v Option
          3. The -l Option
          4. The -n Option
          1. The -u Option
          2. The -r Option
          3. The -o Option
          4. The -n Option
          5. Skipping Fields
          6. The -t Option
          7. Other Options
          1. The -d Option
          2. Other Options
          1. Command Files
            1. Comments
            1. Displaying the Values of Variables
            2. Undefined Variables Have the Null Value
            3. Filename Substitution and Variables
            4. The $ Construct
            1. The Single Quote
            2. The Double Quote
            3. The Backslash
              1. Using the Backslash for Continuing Lines
              2. The Backslash Inside Double Quotes
              1. The Back Quote
              2. The $(. ) Construct
              3. The expr Command
              1. The $# Variable
              2. The $* Variable
              3. A Program to Look Up Someone in the Phone Book
              4. A Program to Add Someone to the Phone Book
              5. A Program to Remove Someone from the Phone Book
                1. $
                1. Exit Status
                  1. The $? Variable
                  1. String Operators
                  2. An Alternative Format for test
                  3. Integer Operators
                  4. File Operators
                  5. The Logical Negation Operator !
                  6. The Logical AND Operator –a
                  7. Parentheses
                  8. The Logical OR Operator –o
                  1. A Second Look at the rem Program
                  1. Yet Another Version of rem
                  1. Special Pattern-Matching Characters
                  2. The -x Option for Debugging Programs
                  3. Back to the case
                  1. The for Command
                    1. The $@ Variable
                    2. The for Without the List
                    1. Breaking Out of a Loop
                    2. Skipping the Remaining Commands in a Loop
                    3. Executing a Loop in the Background
                    4. I/O Redirection on a Loop
                    5. Piping Data into and out of a Loop
                    6. Typing a Loop on One Line
                    1. The read Command
                      1. A Program to Copy Files
                      2. Special echo Escape Characters
                      3. An Improved Version of mycp
                      4. A Final Version of mycp
                      5. A Menu-Driven Phone Program
                      6. The $$ Variable and Temporary Files
                      7. The Exit Status from read
                      1. Local Variables
                        1. Subshells
                        1. export -p
                        1. CDPATH
                        1. The .Command
                        2. The exec Command
                        3. The (. ) and < . ; >Constructs
                        4. Another Way to Pass Variables to a Subshell
                        1. Parameter Substitution
                          1. $
                          2. $
                          3. $
                          4. $
                          5. $
                          6. Pattern Matching Constructs
                          7. $
                          1. The -x Option
                          2. set with No Arguments
                          3. Using set to Reassign Positional Parameters
                          4. The — Option
                          5. Other Options to set
                          1. The eval Command
                          2. The wait Command
                            1. The $! Variable
                            1. trap with No Arguments
                            2. Ignoring Signals
                            3. Resetting Traps
                            1. &-
                            2. In-line Input Redirection
                            3. Shell Archives
                            1. Removing a Function Definition
                            2. The return Command
                            1. Data Formatting Considerations
                            2. rolo
                            3. add
                            4. lu
                            5. display
                            6. rem
                            7. change
                            8. listall
                            9. Sample Output
                            1. Getting the Right Shell
                            2. The ENV File
                            3. Command-Line Editing
                            4. Command History
                            5. The vi Line Edit Mode
                              1. Accessing Commands from Your History
                              1. Accessing Commands from Your History
                              1. The history Command
                              2. The fc Command
                              3. The r Command
                              1. Local Variables
                              2. Automatically Loaded Functions
                              1. Integer Types
                              2. Numbers in Different Bases
                              1. Removing Aliases
                              1. Stopped Jobs and the fg and bg Commands
                              1. Other Features of the cd Command
                              2. Tilde Substitution
                              3. Order of Search
                              1. Startup
                              2. Commands
                              3. Comments
                              4. Parameters and Variables
                                1. Shell Variables
                                2. Positional Parameters
                                3. Special Parameters
                                4. Parameter Substitution
                                1. The fc Command
                                2. vi Line Edit Mode
                                1. Tilde Substitution
                                2. Arithmetic Expressions
                                1. The (. ) Construct
                                2. The < . ; >Construct
                                3. More on Shell Variables
                                1. Shell Jobs
                                2. Stopping Jobs
                                1. The : Command
                                2. The . Command
                                3. The alias Command
                                4. The bg Command
                                5. The break Command
                                6. The case Command
                                7. The cd Command
                                8. The continue Command
                                9. The echo Command
                                10. The eval Command
                                11. The exec Command
                                12. The exit Command
                                13. The export Command
                                14. The false Command
                                15. The fc Command
                                16. The fg Command
                                17. The for Command
                                18. The getopts Command
                                19. The hash Command
                                20. The if Command
                                21. The jobs Command
                                22. The kill Command
                                23. The newgrp Command
                                24. The pwd Command
                                25. The read Command
                                26. The readonly Command
                                27. The return Command
                                28. The set Command
                                29. The shift Command
                                30. The test Command
                                31. The times Command
                                32. The trap Command
                                33. The true Command
                                34. The type Command
                                35. The umask Command
                                36. The unalias Command
                                37. The unset Command
                                38. The until Command
                                39. The wait Command
                                40. The while Command
                                1. Online Documentation
                                2. Documentation on the Web
                                3. Books
                                  1. O’Reilly & Associates
                                  2. Pearson

                                  Product information

                                  • Title: Shell Programming in Unix, Linux and OS X, Fourth Edition
                                  • Author(s): Stephen G. Kochan, Patrick Wood
                                  • Release date: August 2016
                                  • Publisher(s): Addison-Wesley Professional
                                  • ISBN: 9780134496696

                                  You might also like

                                  Check it out now on O’Reilly

                                  Dive in for free with a 10-day trial of the O’Reilly learning platform—then explore all the other resources our members count on to build skills and solve problems every day.

                                  Источник

                                  Программирование командных оболочек в Unix, Linux и OS X

                                  Это полностью обновленное издание классического пособия по программированию командных оболочек в системах Unix. Следуя методике изложения материала, принятой в первоначальном издании, авторы книги уделили основное внимание стандартной оболочке POSIX, поясняя особенности разработки полезных программ в этой удобной среде, чтобы извлечь максимальную пользу из потенциала, заложенного в основу Unix и подобных ей операционных систем.

                                  После краткого обзора команд Unix в книге подробно рассматривается поэтапный процесс создания программ или сценариев оболочки, их отладки и особенностей их работы в среде оболочки. Все основные средства оболочки поясняются на многих практических примерах, что упрощает написание сценариев оболочки для конкретного применения. В книге описываются также основные средства оболочек Korn и Bash.

                                  Книга позволяет научиться.

                                  • Выгодно пользоваться многими утилитами, предоставляемыми системой Unix.
                                  • Писать эффективные сценарии оболочки.
                                  • Употреблять встроенные в оболочку конструкции для выбора вариантов и организации циклов.
                                  • Применять эффективные механизмы заключения в кавычки.
                                  • Извлекать максимальную пользу из встроенной в оболочку предыстории команд и средств их редактирования.
                                  • Пользоваться регулярными выражениями в командах Unix.
                                  • Выгодно пользоваться специальными средствами оболочек Korn и Bash.
                                  • Выявлять основные отличия версий языка оболочки.
                                  • Регулировать порядок реакции системы Unix на действия пользователя.
                                  • Настраивать среду оболочки.
                                  • Пользоваться функциями.
                                  • Отлаживать программы и сценарии оболочки.

                                  «Самая лучшая и действительно классическая книга для обучения программированию командных оболочек».
                                  Dr.

                                  Книга обсуждается в отдельном сообщении в блоге Виктора Штонда.

                                  Об авторах

                                  Стефан Кочан является автором нескольких популярных книг по ОС Unix и языку С, включая Programming in С, Programming in Objective-C, Topics in С Programming и Exploring the Unix System. Прежде он работал консультантом по программному обеспечению в компании AT&T Bell Laboratories, где составил и вел курсы по Unix и программированию на языке С.

                                  Патрик Вуд работает техническим директором в филиале компании Electronics for Imaging, находящемся в штате Нью-Джерси. Он входил в состав инженерно-технического персонала компании Bell Laboratories, где в 1985 году познакомился со Стефаном Кочаном. Совместно они основали консультационную фирму Pipeline Associates, Inc. по ОС Unix, где Патрик занимал пост вице-президента. Кроме того, они совместно написали ряд книг, в том числе Exploring the Unix System, Unix System Security, Topics in C Programming и Unix Shell Programming.

                                  формат 70×100/16; серия Landmark ; 25.12.2020; Вильямс.

                                  Понравилась книга? Порекомендуйте её друзьям и коллегам:

                                  Введение 17
                                  Глава 1. Краткий обзор основ 21
                                  Глава 2. Назначение оболочки 59
                                  Глава 3. Рабочие инструменты 73
                                  Глава 4. Итак, приступим! 121
                                  Глава 5. Заключение в кавычки 135
                                  Глава 6. Передача аргументов 155
                                  Глава 7. Выбор по условию 165
                                  Глава 8. Повторное выполнение команд 203
                                  Глава 9. Ввод и вывод данных 227
                                  Глава 10. Рабочая среда 253
                                  Глава 11. Дополнительные сведения о параметрах 285
                                  Глава 12. Невыясненные вопросы 303
                                  Глава 13. Возвращение к программе rolo 323
                                  Глава 14. Интерактивные и нестандартные средства оболочки 339
                                  Приложение A. Краткое изложение оболочки 377
                                  Приложение Б. Дополнительные источники информации 419
                                  Предметный указатель 423

                                  Источник

                                  Читайте также:  Linux headers raspberry pi
Оцените статью
Adblock
detector