Your email was sent successfully. Check your inbox.

An error occurred while sending the email. Please try again.

Proceed reservation?

Export
Filter
Datasource
Material
Language
  • 1
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    ISBN: |o|9781492078807
    Language: English
    Pages: 1 online resource (43 pages)
    Edition: 8th edition
    Keywords: Electronic books ; local ; Electronic books
    Abstract: vi and its derivatives are perhaps the most important family of text editors in the programming community. With this updated guide, Unix and Linux users will learn text editing basics for both vi and Vim ("vi improved") before moving onto advanced editing tools for each editor. Authors Elbert Hannah and Arnold Robbins cover the latest major releases of Vim, including 7.4, 8.0, and 8.2. Whether you're a programmer or computer analyst or you work with browsers or command-line interfaces, you'll examine multiwindow editing, global search and replacement, power tools for programmers, and how to write interactive macros and scripts to extend the editor-all in the easy-to-follow style that's made this book a classic. Go beyond the basics to learn which vi commands fit your specific needs Learn advanced vi tools that shift some of the editing burden to the computer Explore Vim tools that provide major improvements over vi Examine Vim's multiwindow editing feature, a significant upgrade over vi Use Vim scripts to customize and tailor Vim to suit your needs Look at Vim in modern GUI environments with Graphical Vim (gvim)
    Note: Online resource; Title from title page (viewed September 25, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 2
    Online Resource
    Online Resource
    Beijing ; : O'Reilly & Associates | Boston, MA :Safari,
    Language: English
    Pages: iii, 45 p. ; , 18 cm
    Edition: 1st ed.
    Keywords: UNIX (Computer file) ; Utilities (Computer programs) ; Electronic books ; local
    Abstract: For people who create and modify text files, sed and awk are power tools for editing. sed, awk, and regular expressions allow programmers and system administrators to automate editing tasks that need to be performed on one or more files, to simplify the task of performing the same edits on multiple files, and to write conversion programs. The sed & awk Pocket Reference is a companion volume to sed & awk and Unix in a Nutshell. This small book is a handy reference guide to the information the larger volumes, presenting a concise summary of regular expressions and pattern matching, and summaries of sed and awk.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 3
    Online Resource
    Online Resource
    Sebastopol, CA : O'Reilly | Boston, MA :Safari,
    Language: English
    Pages: vi, 46 p. ; , 18 cm
    Edition: 2nd ed.
    Keywords: Awk ; Sed (Computer file) ; UNIX (Computer file) ; Utilities (Computer programs) ; Electronic books ; local
    Abstract: For people who create and modify text files, sed and awk are power tools for editing. sed, awk, and regular expressions allow programmers and system administrators to automate editing tasks that need to be performed on one or more files, to simplify the task of performing the same edits on multiple files, and to write conversion programs.The sed & awk Pocket Reference is a companion volume to sed & awk, Second Edition, Unix in a Nutshell, Third Edition , and Effective awk Programming, Third Edition . This new edition has expanded coverage of gawk (GNU awk), and includes sections on: An overview of sed and awk?s command line syntax Alphabetical summaries of commands, including nawk and gawk Profiling with pgawk Coprocesses and sockets with gawk Internationalization with gawk A listing of resources for sed and awk users This small book is a handy reference guide to the information presented in the larger volumes. It presents a concise summary of regular expressions and pattern matching, and summaries of sed and awk.Arnold Robbins, an Atlanta native now happily living in Israel, is a professional programmer and technical author and coauthor of various O'Reilly Unix titles. He has been working with Unix systems since 1980, and currently maintains gawk and its documentation.
    Note: "Text processing with regular expressions"--Cover. - Includes bibliographical references (p. 46)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 4
    Online Resource
    Online Resource
    Beijing ; : O'Reilly | Boston, MA :Safari,
    Language: English
    Pages: xxiv, 421 p. ; , 24 cm
    Edition: 3rd ed.
    DDC: 005.13/3
    Keywords: AWK (Computer program language) ; Electronic books ; local
    Abstract: Effective awk Programming, 3rd Edition, focuses entirely on awk, exploring it in the greatest depth of the three awk titles we carry. It's an excellent companion piece tothe more broadly focused second edition. This book providescomplete coverage of the gawk 3.1 language as well as themost up-to-date coverage of the POSIX standard for awk available anywhere. Author Arnold Robbins clearly distinguishesstandard awk features from GNU awk (gawk) -specific features, shines light into many of the"dark corners" of the language (areas to watch out for whenprogramming), and devotes two full chapters to example programs. Abrand new chapter is devoted to TCP/IP networking with gawk. Heincludes a summary of how the awk language evolved. The bookalso covers: Internationalization of gawk Interfacing to i18n at the awk level Two-way pipes TCP/IP networking via the two-way pipe interface The new PROCINFO array, which provides information aboutrunning gawk Profiling and pretty-printing awk programs In addition to covering the awk language, this book servesas the official "User's Guide" for the GNU implementation of awk ( gawk ), describing in an integrated fashion theextensions available to the System V Release 4 version of awk that are also available in gawk . As the official gawk User's Guide, this book will also be availableelectronically, and can be freely copied and distributed under theterms of the Free Software Foundation's Free Documentation License(FDL). A portion of the proceeds from sales of this book will go tothe Free Software Foundation to support further development of freeand open source software. The third edition of Effective awkProgramming is a GNU Manual and is published by O'Reilly &Associates under the Free Software Foundation's FreeDocumentation License (FDL). A portion of the proceeds fromthe sale of this book is donated to the Free Software Foundation tofurther development of GNU software. This book is also available inelectronic form; you have the freedom to modify this GNU Manual,like GNU software. Copies published by the Free Software Foundationraise funds for GNU development.
    Note: Includes indexes
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 5
    Online Resource
    Online Resource
    Sebastopol, [Calif.] : O'Reilly | Boston, MA :Safari,
    Language: English
    Pages: xxii, 407 p. , ill. ; , 24 cm
    Edition: 2nd ed.
    Series Statement: A Nutshell handbook
    Keywords: Awk ; Sed (Computer file) ; UNIX (Computer file) ; Utilities (Computer programs) ; Electronic books ; local
    Abstract: sed & awk describes two text processing programs that are mainstays of the UNIX programmer's toolbox. sed is a "stream editor" for editing streams of text that might be too large to edit as a single file, or that might be generated on the fly as part of a larger data processing step. The most common operation done with sed is substitution, replacing one block of text with another. awk is a complete programming language. Unlike many conventional languages, awk is "data driven" -- you specify what kind of data you are interested in and the operations to be performed when that data is found. awk does many things for you, including automatically opening and closing data files, reading records, breaking the records up into fields, and counting the records. While awk provides the features of most conventional programming languages, it also includes some unconventional features, such as extended regular expression matching and associative arrays. sed & awk describes both programs in detail and includes a chapter of example sed and awk scripts.This edition covers features of sed and awk that are mandated by the POSIX standard. This most notably affects awk , where POSIX standardized a new variable, CONVFMT, and new functions, toupper () and tolower (). The CONVFMT variable specifies the conversion format to use when converting numbers to strings ( awk used to use OFMT for this purpose). The toupper () and tolower () functions each take a (presumably mixed case) string argument and return a new version of the string with all letters translated to the corresponding case.In addition, this edition covers GNU sed , newly available since the first edition. It also updates the first edition coverage of Bell Labs nawk and GNU awk ( gawk ), covers mawk , an additional freely available implementation of awk , and briefly discusses three commercial versions of awk , MKS awk , Thompson Automation awk ( tawk ), and Videosoft (VSAwk).
    Note: "UNIX power tools"--Cover. - Includes bibliographical references and index
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 6
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    ISBN: 0596009305
    Language: English
    Pages: 1 online resource (944 pages)
    Edition: 5th edition
    Keywords: Electronic books ; local
    Abstract: Over the last few years, Linux has grown both as an operating system and a tool for personal and business use. Simultaneously becoming more user friendly and more powerful as a back-end system, Linux has achieved new plateaus: the newer filesystems have solidified, new commands and tools have appeared and become standard, and the desktop--including new desktop environments--have proved to be viable, stable, and readily accessible to even those who don't consider themselves computer gurus. Whether you're using Linux for personal software projects, for a small office or home office (often termed the SOHO environment), to provide services to a small group of colleagues, or to administer a site responsible for millions of email and web connections each day, you need quick access to information on a wide range of tools. This book covers all aspects of administering and making effective use of Linux systems. Among its topics are booting, package management, and revision control. But foremost in Linux in a Nutshell are the utilities and commands that make Linux one of the most powerful and flexible systems available. Now in its fifth edition, Linux in a Nutshell brings users up-to-date with the current state of Linux. Considered by many to be the most complete and authoritative command reference for Linux available, the book covers all substantial user, programming, administration, and networking commands for the most common Linux distributions. Comprehensive but concise, the fifth edition has been updated to cover new features of major Linux distributions. Configuration information for the rapidly growing commercial network services and community update services is one of the subjects covered for the first time. But that's just the beginning. The book covers editors, shells, and LILO and GRUB boot options. There's also coverage of Apache, Samba, Postfix, sendmail, CVS, Subversion, Emacs, vi, sed, gawk, and much more. Everything that system administrators, developers, and power users need to know about Linux is referenced here, and they will turn to this book again and again.
    Note: Online resource; Title from title page (viewed July 27, 2005) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 7
    Online Resource
    Online Resource
    Sebastopol, CA ; : O'Reilly | Boston, MA :Safari,
    Language: English
    Pages: xviii, 412 p. , ill. ; , 24 cm
    Edition: 2nd ed.
    DDC: 005.71262
    Keywords: UNIX (Computer file) ; KornShell (Computer program language) ; Electronic books ; local
    Abstract: The Korn shell is an interactive command and scripting language for accessing Unix® and other computer systems. As a complete and high-level programming language in itself, it's been a favorite since it was developed in the mid 1980s by David G. Korn at AT&T Bell Laboratories. Knowing how to use it is an essential skill for serious Unix users. Learning the Korn Shell shows you how to use the Korn shell as a user interface and as a programming environment.Writing applications is often easier and quicker with Korn than with other high-level languages. Because of this, the Korn shell is the most often used shell in commercial environments and among inexperienced users. There are two other widely used shells, the Bourne shell and the C shell. The Korn shell, or ksh , has the best features of both, plus many new features of its own. ksh can do much to enhance productivity and the quality of a user's work, both in interacting with the system, and in programming. The new version, ksh93 , has the functionality of other scripting languages such as awk, icon, Perl, rexx, and tcl. Learning the Korn Shell is the key to gaining control of the Korn shell and becoming adept at using it as an interactive command and scripting language. Prior programming experience is not required in order to understand the chapters on basic shell programming. Readers will learn how to write many applications more easily and quickly than with other high-level languages. In addition, readers will also learn about Unix utilities and the way the Unix operating system works in general. The authors maintain that you shouldn't have to be an internals expert to use and program the shell effectively.The second edition covers all the features of the current version of the Korn shell, including many new features not in earlier versions of ksh93, making it the most up-to-date reference available on the Korn shell. It compares the current version of the Korn shell to several other Bourne-compatible shells, including several Unix emulation environments for MS-DOS and Windows. In addition, it describes how to download and build ksh93 from source code.A solid offering for many years, this newly revised title inherits a long tradition of trust among computer professionals who want to learn or refine an essential skill.
    Note: "UNIX programming"--Cover. - Includes index
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 8
    Online Resource
    Online Resource
    Sebastopol, CA : O'Reilly Media
    Language: English
    Pages: 1 online resource (1 volume) , illustrations
    Edition: 4th edition.
    Parallel Title: Erscheint auch als
    Keywords: AWK (Computer program language) ; Application software ; Development ; Electronic books ; Electronic books ; local
    Abstract: This practical guide serves as both a reference and tutorial for POSIX-standard awk and for the GNU implementation, called gawk . This book is useful for novices and awk experts alike. In this thoroughly revised edition, author and gawk lead developer Arnold Robbins describes the awk language and gawk program in detail, shows you how to use awk and gawk for problem solving, and then dives into specific features of gawk .
    Note: Includes index. - Description based on print version record
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 9
    Online Resource
    Online Resource
    Köln : O'Reilly Verlag | Boston, Mass. :Safari Books Online,
    ISBN: 9783897212138 , 3897212137
    Language: German
    Pages: 62 p , 18 cm
    Edition: 1. Aufl.
    Series Statement: O'Reillys Taschenbibliothek
    Keywords: Vi ; UNIX (Computer file) ; Text editors (Computer programs) ; Electronic books ; local
    Abstract: Die vorliegende Referenz bietet einen schnell zugänglichen Überblick über Optionen und Befehle von vi und ex, Befehlszeilen-Optionen, Shortcuts im Eingabemodus, reguläre Ausdrücke sowie Optionen der vi-Klone nvi, elvis, vim und vile und deren Erweiterungen. Damit wird sowohl der Einstieg in die Textbearbeitung mit vi erleichtert, als auch dem erfahrenen Anwender die Möglichkeit geboten, vi im Arbeitsalltag effizienter zu nutzen. vi-Editor - kurz & gut ist die ideale Ergänzung zu dem Titel Textbearbeitung mit dem vi-Editor , in dem Linda Lamb und Arnold Robbins detailliert in den Umgang mit vi und seinen Klonen einführen.
    Note: Text in German translated from English
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 10
    Language: German
    Pages: 1 online resource (V, 94 p.)
    Edition: 1. Aufl.
    Parallel Title: Erscheint auch als
    Keywords: Vi ; UNIX (Computer file) ; Text editors (Computer programs) ; Electronic books ; Electronic books ; local
    Abstract: Die Begeisterung für den vi- und den Vim-Editor ist ungebrochen. Die plattform-unabhängigen Texteditoren besitzen jedoch so viele Befehle, dass man sie sich kaum alle merken kann. Der Autor Arnold Robbins hat die wichtigsten Befehle für vi und Vim - aber auch für Clones wie vile, elvis und nvi - in dieser praktischen Befehlsreferenz zusammengefasst.
    Note: Includes index. - Description based on print version record
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
Close ⊗
This website uses cookies and the analysis tool Matomo. More information can be found here...