1 / 12

Systems Programming & Scripting

Lecture 12: Introduction to Scripting & Regular Expressions. Systems Programming & Scripting. Goals of the Scripting Classes. Learn how to easily do common operations on the command-line Learn how to generate simple scripts of repetitive activities

taber
Télécharger la présentation

Systems Programming & Scripting

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Lecture 12: Introduction to Scripting & Regular Expressions Systems Programming & Scripting Sys Prog & Scrip - Heriot Watt Univ

  2. Sys Prog & Scrip - Heriot Watt Univ Goals of the Scripting Classes • Learn how to easily do common operations on the command-line • Learn how to generate simple scripts of repetitive activities • Understand the structuring constructs available in the bash scripting language

  3. Sys Prog & Scrip - Heriot Watt Univ Non-Goals of Scripting Classes • Give an introduction to Unix commands. • Cover the full-range of bash • Compare bash with other scripting languages (tcsh, python, …) • Advocate scripting for large scale programming

  4. Sys Prog & Scrip - Heriot Watt Univ Introduction to Shell Scripting • Scripts are sequences of repetitive commands, usually executed on the command-line. • Scripting languages provide only an impoverished set of programming abstractions • A focus of scripting languages is at easily combining simple commands to perform a more complex job. • Powerful tools to achieve that are 'pipes' and 'regular expressions'.

  5. Sys Prog & Scrip - Heriot Watt Univ Regular Expressions • Regular expressions provide a powerful, efficient and flexible text processing technique. • They form the basis of text and data processing tools. • They also commonly used to select files.

  6. Sys Prog & Scrip - Heriot Watt Univ History of Regular Expressions • Based on mathematical notation developed by McCulloch and Pitts to describe neural networks. • Formally introduced in 1956 by Kleene in his paper “Representation of Events in Nerve Nets” • Ken Thompson, the inventor of Unix, used regular expressions in search algorithms. • Their first practical use was in the Unix editor qed.

  7. Sys Prog & Scrip - Heriot Watt Univ Using Regular Expressions • Integrated in many tools and languages • vi, grep, Perl, PHP. • Facilitates a search engine. • Match upper and lower case. • Either or string matching. • Quantify character repeats. • Match classes of characters. • Match any character. • Expressions can be combined. • You can match anything using regular expressions. • Syntax is simple.

  8. Sys Prog & Scrip - Heriot Watt Univ The Regular Expressions language • Regular expressions are constructed using two types of characters: • Special characters or meta characters • Literal or normal text. • Can think of regular expressions as a language: • Grammar: meta characters. • Words: literal text.

  9. Sys Prog & Scrip - Heriot Watt Univ Basic Syntax • . The dot matches any single character • E.g. ab. matches aba, abb, abc, etc. • [ ] A bracket expression matches a single character contained within the bracket. • E.g. [abc] matches a, b or c • [a-z] specifies a range which matches any lowercase letter from a to z. • [abcx-z] matches a, b, c, x, y and z.

  10. Sys Prog & Scrip - Heriot Watt Univ Cont. Basic Syntax • [^ ] negation of [ ] • Matches a single character not contained in bracket. • E.g. [^abc] matches any character other than a, b or c. • ^ matches the starting position of a string. • $ matches the ending position of a string. • * matches the previous element zero or more times. • E.g. abc*d matches abd, abcd, abccd, etc.

  11. Sys Prog & Scrip - Heriot Watt Univ POSIX regular expressions • [:alnum:] matches alpha-numerical characters • [:alpha:] matches alphabetical characters • [:digit:] matches numerals • [:upper:] matches upper case characters • [:lower:] matches lower case characters

  12. Sys Prog & Scrip - Heriot Watt Univ Examples • Searching (in) files • Using find • Using version control • Doing stream processing with sed

More Related