5 Pages

grep_5

Course: ACC 231, Spring 2012
School: Northampton Community...
Rating:
 
 
 
 
 

Word Count: 1214

Document Preview

[>] [ [<] << ] [ Up ] [ >> ] [Top] [Contents] [Index] [ ? ] 5. Regular Expressions A regular expression is a pattern that describes a set of strings. Regular expressions are constructed analogously to arithmetic expressions, by using various operators to combine smaller expressions. grep understands two different versions of regular expression syntax:...

Register Now

Unformatted Document Excerpt

Coursehero >> Pennsylvania >> Northampton Community College >> ACC 231

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
[>] [ [<] << ] [ Up ] [ >> ] [Top] [Contents] [Index] [ ? ] 5. Regular Expressions A regular expression is a pattern that describes a set of strings. Regular expressions are constructed analogously to arithmetic expressions, by using various operators to combine smaller expressions. grep understands two different versions of regular expression syntax: "basic"(BRE) and "extended"(ERE). In GNU grep, there is no difference in available functionality using either syntax. In other implementations, basic regular expressions are less powerful. The following description applies to extended regular expressions; differences for basic regular expressions are summarized afterwards. The fundamental building blocks are the regular expressions that match a single character. Most characters, including all letters and digits, are regular expressions that match themselves. Any metacharacter with special meaning may be quoted by preceding it with a backslash. A regular expression may be followed by one of several repetition operators: ` .' The period `.' matches any single character. ` ?' The preceding item is optional and will be matched at most once. ` *' The preceding item will be matched zero or more times. ` +' The preceding item will be matched one or more times. ` {n}' The preceding item is matched exactly n times. ` {n,}' The preceding item is matched n or more times. ` {n,m}' The preceding item is matched at least n times, but not more than m times. Two regular expressions may be concatenated; the resulting regular expression matches any string formed by concatenating two substrings that respectively match the concatenated subexpressions. Two regular expressions may be joined by the infix operator `|'; the resulting regular expression matches any string matching either subexpression. Repetition takes precedence over concatenation, which in turn takes precedence over alternation. A whole subexpression may be enclosed in parentheses to override these precedence rules. [<] [>] [ << ] [ Up ] [ >> ] [Top] [Contents] [Index] [ ? ] 5.1 Character Class A bracket expression is a list of characters enclosed by `[' and `]'. It matches any single character in that list; if the first character of the list is the caret `^', then it matches any character not in the list. For example, the regular expression `[0123456789]' matches any single digit. Within a bracket expression, a range expression consists of two characters separated by a hyphen. It matches any single character that sorts between the two characters, inclusive, using the locale's collating sequence and character set. For example, in the default C locale, `[a-d]' is equivalent to `[abcd]'. Many locales sort characters in dictionary order, and in these locales `[a-d]' is typically not equivalent to `[abcd]'; it might be equivalent to `[aBbCcDd]', for example. To obtain the traditional interpretation of bracket expressions, you can use the C locale by setting the LC_ALL environment variable to the value `C'. Finally, certain named classes of characters are predefined within bracket expressions, as follows. Their interpretation depends on the LC_CTYPE locale; the interpretation below is that of the C locale, which is the default if no LC_CTYPE locale is specified. ` [:alnum:]' Alphanumeric characters: `[:alpha:]' and `[:digit:]'. ` [:alpha:]' Alphabetic characters: `[:lower:]' and `[:upper:]'. ` [:blank:]' Blank characters: space and tab. ` [:cntrl:]' Control characters. In ASCII, these characters have octal codes 000 through 037, and 177 (DEL). In other character sets, these are the equivalent characters, if any. ` [:digit:]' Digits: 0 1 2 3 4 5 6 7 8 9. ` [:graph:]' Graphical characters: `[:alnum:]' and `[:punct:]'. ` [:lower:]' Lower-case letters: a b c d e f g h i j k l m n o p q r s t u v w x y z. ` [:print:]' Printable characters: `[:alnum:]', `[:punct:]', and space. ` [:punct:]' Punctuation characters: ! " # $ % ' & ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. ` [:space:]' Space characters: tab, newline, vertical tab, form feed, carriage return, and space. ` [:upper:]' Upper-case letters: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z. ` [:xdigit:]' Hexadecimal digits: 0 1 2 3 4 5 6 7 8 9 A B C D E F a b c d e f. For example, `[[:alnum:]]' means `[0-9A-Za-z]', except the latter depends upon the C locale and the ASCII character encoding, whereas the former is independent of locale and character set. (Note that the brackets in these class names are part of the symbolic names, and must be included in addition to the brackets delimiting the bracket list.) Most metacharacters lose their special meaning inside lists. ` ]' ends the list if it's not the first list item. So, if you want to make the `]' character a list item, you must put it first. ` [.' represents the open collating symbol. ` .]' represents the close collating symbol. ` [=' represents the open equivalence class. ` =]' represents the close equivalence class. ` [:' represents the open character class followed by a valid character class name. ` :]' represents the close character class followed by a valid character class name. ` -' represents the range if it's not first or last in a list or the ending point of a range. ` ^' represents the characters not in the list. If you want to make the `^' character a list item, place it anywhere but first. [<] [>] [ << ] [ Up ] [ >> ] [Top] [Contents] [Index] [ ? ] 5.2 Backslash Character The `\' when followed by certain ordinary characters take a special meaning : ` `\b'' Match the empty string at the edge of a word. ` `\B'' Match the empty string provided it's not at the edge of a word. ` `\<'' Match the empty string at the beginning of word. ` `\>'' Match the empty string at the end of word. ` `\w'' Match word constituent, it is a synonym for `[[:alnum:]]'. ` `\W'' Match non word constituent, it is a synonym for `[^[:alnum:]]'. For example , `\brat\b' matches the separate word `rat', `c\Brat\Be' matches `crate', but `dirty \Brat' doesn't match `dirty rat'. [<] [>] [ << ] [ Up ] [ >> ] [Top] [Contents] [Index] [ ? ] 5.3 Anchoring The caret `^' and the dollar sign `$' are metacharacters that respectively match the empty string at the beginning and end of a line. [<] [>] [ << ] [ Up ] [ >> ] [Top] [Contents] [Index] [ ? ] 5.4 Back-reference The back-reference `\n', where n is a single digit, matches the substring previously matched by the nth parenthesized subexpression of the regular expression. For example, `(a)\1' matches `aa'. When use with alternation if the group does not participate in the match, then the back-reference makes the whole match fail. For example, `a(.)|b\1' will not match `ba'. When multiple regular expressions are given with `-e' or from a file `-f file', the back-referecences are local to each expression. [<] [>] [ << ] [ Up ] [ >> ] [Top] [Contents] [Index] [ ? ] 5.5 Basic vs Extended In basic regular expressions the metacharacters `?', `+', `{', `|', `(', and `)' lose their special meaning; instead use the backslashed versions `\?', `\+', `\{', `\|', `\(', and `\)'. Traditional egrep did not support the `{' metacharacter, and some egrep implementations support `\{' instead, so portable scripts should avoid `{' in `egrep' patterns and should use `[{]' to match a literal `{'. egrep attempts to support traditional usage by assuming that `{' is not special if it would be the start of an invalid interval specification. For example, the shell command `egrep '{1'' searches for the two-character string `{1' instead of reporting a syntax error in the regular expression. POSIX.2 allows this behavior as an extension, but portable scripts should avoid it. GNU [ << ] [ >> ] [Top] [Contents] [Index] [ ? ] This document was generated by System Administrator on May, 18 2009 using texi2html 1.70.
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Northampton Community College - ACC - 231
[&lt;] [&gt;][ &lt; ] [ Up ] [ &gt; ][Top] [Contents] [Index] [ ? ]6. UsageHere is an example shell command that invokes GNU grep:grep -i 'hello.*world' menu.hmain.cThis lists all lines in the files `menu.h' and `main.c' that contain the string `hello' followe
Northampton Community College - ACC - 231
[&lt;] [&gt;][ &lt; ] [ Up ] [ &gt; ][Top] [Contents] [Index] [ ? ]7. Reporting bugsEmail bug reports to bug-gnu-utils@gnu.org. Be sure to include the word &quot;grep&quot; somewhere in the&quot;Subject:&quot; field.Large repetition counts in the `cfw_n,m' construct may cause grep
Northampton Community College - ACC - 231
[&lt;] [&gt;][ &lt; ] [ Up ] [ &gt; ][Top] [Contents] [Index] [ ? ]8. CopyingGNU grep is licensed under the GNU GPL, which makes it free software.Please note that &quot;free&quot; in &quot;free software&quot; refers to liberty, not price. As some GNU project advocates liketo point
Northampton Community College - ACC - 231
[&lt;] [&gt;][ &lt; ] [ Up ] [ &gt; ][Top] [Contents] [Index] [ ? ]Concept IndexThis is a general index of all issues discussed in this manual, with the exception of the grep commandsand command-line options.Jump to:ABCDEFGHILMNOPQRSTUVWXZIndex EntrySection
Northampton Community College - ACC - 231
[&lt;] [&gt;][ &lt; ] [ Up ] [ &gt; ][Top] [Contents] [Index] [ ? ]Concept Index: T - ZJump to:ABCDEFGHILMNOPQRSTUVWXZIndex EntrySectionTtranslation of message language 2.2 Environment VariablesUupper-case letters5.1 Character ClassUsage summary, printin
Northampton Community College - ACC - 231
[&lt;] [&gt;][ &lt; ] [ Up ] [ &gt; ][Top] [Contents] [Index] [ ? ]IndexThis is an alphabetical list of all grep commands, command-line options, and environment variables.Jump to:*+-.?_cfw_ABCDGLPSUXIndex EntrySection*5. Regular Expressions+5. Regular Ex
Northampton Community College - ACC - 231
[&lt;] [&gt;][ &lt; ] [ Up ] [ &gt; ][Top] [Contents] [Index] [ ? ]Index: P - XJump to:*+-.?_cfw_ABCDGLPSUXIndex EntrySectionPPOSIXLY_CORRECT 2.2 Environment Variablesprint5.1 Character Classpunct5.1 Character Classspace5.1 Character Classupper5.1 C
Northampton Community College - ACC - 231
[Top] [Contents] [Index] [ ? ]About This DocumentThis document was generated by System Administrator on May, 18 2009 using texi2html 1.70.The buttons in the navigation panels have the following meaning:ButtonName[&lt;]Back[&gt;]Go toFrom 1.2.3 go top
Northampton Community College - ACC - 231
[Top] [Contents] [Index] [ ? ]Table of Contents 1. Introduction 2. Invoking grep 2.1 GNU Extensions 2.2 Environment Variables 3. Diagnostics 4. grep programs 5. Regular Expressions 5.1 Character Class 5.2 Backslash Character 5.3 Anchoring 5.4
Northampton Community College - ACC - 231
[Top] [Contents] [Index] [ ? ]Grepgrep searches for lines matching a pattern.This document was produced for version 2.5.1 of GNU grep.1. Introduction2. Invoking grepInvoking grep; description of options.3. DiagnosticsExit status returned by grep.
Northampton Community College - ACC - 231
[Top] [Contents] [Index] [ ? ]Texi2HTMLCopyright 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.Portions of texi2htmlCopyright 1999, 2000 Lionel ConsCopyright 1999, 2000 Karl BerryCopyright 1999, 2000 Olaf BachmannCopyright 2002, 2003 P
Northampton Community College - ACC - 231
AcknowledgmentsPortions of this Apple Software may utilize the following copyrightedmaterial, the use of which is hereby acknowledged.The OpenSSL Project ( OpenSSL )Copyright 1998-2004 The OpenSSL Project. All rights reserved.Redistribution and use i
DeVry Manhattan - ENG - 135
T.G.I. FRIDAYS EVALUATION1T.G.I. Fridays EvaluationGregory AmisDeVry UniversityT.G.I. FRIDAYS EVALUATION2T.G.I. Fridays EvaluationI live in Staten Island New York which is the least of tourist attractions in the city of NewYork. It is also known
DeVry Manhattan - ENG - 135
BOOK REVIEWBook ReviewGregory AmisDeVry UniversityBOOK REVIEWBook ReviewI decided to write about the section on corn in the book, as it interested me so much.Since reading the book I have done some research on my own regarding various items, mostly
DeVry Manhattan - ENG - 135
POSITION PAPERPosition PaperGregory AmisDeVry UniversityPOSITION PAPERPosition PaperThe problem of world hunger is a growing problem as the population increases. Severalpossible solutions have been proposed, with one of the most widely supported op
DeVry Manhattan - ENG - 135
Topic: The Omnivores Dilemma examines American food production both industriallyand organically, showing organically produced food is much healthier.Research Question: How much healthier is organic food and is it feasible to produceorganic food on a la
DeVry Manhattan - ENG - 135
ANNOTATED BIBLIOGRAPHYAnnotated BibliographyGregory AmisDeVry UniversityANNOTATED BIBLIOGRAPHYAnnotated BibliographyCtirrell (2011, February 28). Cause and Effect Food Production and the Environment.Retrieved from: http:/envirowriters.wordpress.com
DeVry Manhattan - ENG - 135
RESEARCH DRAFT PART IResearch Draft Part IGregory AmisDeVry UniversityRESEARCH DRAFT PART IResearch Draft Part IFor the introduction I plan on providing an example of the harms that industriallyproduced food can have on the individual. My working t
DeVry Manhattan - ENG - 135
RESEARCH DRAFT PART IIResearch Draft Part IIGregory AmisDeVry UniversityRESEARCH DRAFT PART IIResearch Draft Part IIOrganic food should be the sole method of production because it is much better for thepeople that eat it. Although it is important t
DeVry Manhattan - ENG - 135
FINAL PAPERFinal PaperGregory AmisDeVry UniversityFINAL PAPERFinal PaperThe problem of world hunger is a growing problem as the population increases. Severalpossible solutions have been proposed, with one of the most widely supported options being
UPenn - BIOL - 212
Practice problems for Midterm 1 BIOL202S20121.(A) One of your classmates forgot to study their amino acid structures. Fix the errorsin the structures shown below by redrawing them correctly. (B) After correcting thestructure, indicate which amino acid
UPenn - BIOL - 212
Today:1) Short discussion of ATP and other carrier molecules2) Protein folding3) Exploration of adenylate kinase structure and functionIonization state and pH- Acetic acid1) pH, pKaare on log scale10:11:11:102) Outside buffering region-Ionic st
UPenn - BIOL - 212
I have posted answers to e-mails on Blackboard under QuestionsThe PyMol program, a tutorial, and the Builds that I showed in classare in the Course materials section on BlackboardToday:1) Using amino acid sequence to explore protein function2) Protei
UPenn - BIOL - 212
And this just feels like spinning platesMy body is oating down the muddy river(Radiohead)Looking forwardsNext, we will discuss features of protein function-Protein binding: how proteins interact with other moleculesand other proteins to enable funct
UPenn - BIOL - 212
Lecture overviewWe are now discussing features of protein functionLast lecture:Protein binding: how proteins interact with other moleculesand other proteins to enable functionExample: transport of oxygen by hemoglobin(cooperativity)-Enzymes: Protei
UPenn - BIOL - 212
Lecture overviewW e a r e n o w d is c u s s in g fe a tu r e s o f p r o te in fu n c tio nL a s t le c tu r e :P r o te in b in d in g : h o w p r o te in s in te r a c t w ith o th e r m o le c u le sa n d o th e r p r o te in s to e n a b le fu n
UPenn - BIOL - 212
Powers of ten, a lm (1968)Cell biology involves shape and space (like design/architecture)We are making rapid progress- help push the boundariesCan you imagine the worlds inside your body?For the future physicians among youWatson software purchased b
UPenn - BIOL - 212
Today!Amino acids and polypeptidesPeptide bonds and peptidesFeatures of amino acid side chainsCharge and pH(Protein structure)Gibbs free energy and metabolism/catabolismThermodynamicsSpontaneity againstthe oddsQuestion of the day:Why for thousa
UPenn - BIOL - 212
Practice problems for Midterm 1 BIOL202S20121.(A) One of your classmates forgot to study their amino acid structures. Fix the errorsin the structures shown below by redrawing them correctly. (B) After correcting thestructure, indicate which amino acid
UPenn - BIOL - 212
http:/powersof10.com/film(and the Galaxy Song, Monty Python)Powers of ten, a lm (1968)Cell biology involves shape and space (like design/architecture)We are making rapid progress- help push the boundariesCan you imagine the worlds inside your body?F
UPenn - BIOL - 212
PLASMA MEMBRANE: Lipids and ProteinsCELLSErnst HaeckelKunstformen der Natur(1904)BacteriaAnimals:Multicellular organismsCiliata:SophisticatedcellsAnimal cellsELECTRON MICROSCOPY OF PLASMA MEMBRANEPHASE SEPARATIONHydrophilic moleculesHydroph
UPenn - BIOL - 212
MEMBRANE PROTEINSH. Schillers &amp; H.Oberleithner, University Hospital of MuensterFLUID-MOSAIC MODEL OF MEMBRANE ORGANIZATIONMECHANISMS OF PROTEIN ASSOCIATION WITH LIPID BILAYERTransmembranePeripheralPH-domains: bind PIPsSINGLE-PASS PROTEINSSINGLE-PA
UPenn - BIOL - 212
PROTEIN SYNTHESIS IN ENDOPLASMIC RETICULUMINTRACELLULAR MEMBRANE ORGANELLESUNDERSTANDING THE PROTEIN TRAFFICKINGThePancreaticExocrineCellGeorge Palade1974The Nobel Prize in Physiology or MedicineAlbert ClaudeChristian de DuveGeorge E. PaladeR
UPenn - BIOL - 212
VESICULAR TRANSPORTMEMBRANE COMPARTMENTS AND TRAFFICKING PATHWAYSMEMBRANE COMPARTMENTS AND TRAFFICKING PATHWAYSVESICULAR TRANSPORTBudding Scission Transport FusionCOATED VESICLES TRANSPORT VEHICLESFigure 13-4 Molecular Biology of the Cell ( Garland
UPenn - BIOL - 212
SECRETIONTRAFFIC FROM TRANS-GOLGI NETWORKFigure 13-64 Molecular Biology of the Cell ( Garland Science 2008)PACKING OF THE SECRETORY PRODUCT IN VESICLESFigure 13-65a Molecular Biology of the Cell ( Garland Science 2008)PACKING OF INSULIN IN VESICLESS
UPenn - BIOL - 212
SIGNAL TRANSDUCTIONSIGNALCELLS CAN RESPOND TO EXOGENOUS SIGNALSDictyosteliumamoebarespondingtochemoattractant(cAMP)NeutrophilchasingabacteriumGradient of -factorBUDDING YEAST RESPONDING TO MATING FACTORShmooA. MurrayTYPES OF SIGNALS BETWEEN CELL
UPenn - BIOL - 212
CHEMISTRY 242 FIRST EXAMINATIONWEDNESDAY, September 24, 2008ANSWER KEY1.(14 Points) a. Provide a molecular orbital diagram for the pi system of the allyl anion (C3H5 ) using the particle ina box method. Include both the relative energies and phasing
UPenn - BIOL - 212
CHEMISTRY 242 FIRST EXAMINATIONFebruary 6, 2008KEY1.(10 Points) Illustrat e how you can derive th e pi molecular orbit als of s-t ransbutadien e using th e &quot;particle in a box&quot; analog y. Sh ow all th e molecular orbitals, an ddraw th e sizes an d ph
UPenn - BIOL - 212
CHEMISTRY 242 SECOND EXAMINATIONWednesday, October 22, 2008Professor William P. DaileyKE Y1.(14 points ) Provide the product(s) and a complete arrow pushing mechanism for thefollowing reaction.CF3HNO3H2SO4 (cat)CF3OHOONNHOOOH2OOHN
UPenn - BIOL - 212
CHEMISTRY 242 THIRD EXAMINATIONWednesday, November 19, 2008Professor William P. DaileyKE Y1. (8 Points) The acidity of pentane-2,4-dione is different than that of dimethyl malonate. Explainwhich hydrogen(s) are the most acidic in each compound, provi
UPenn - BIOL - 212
UPenn - BIOL - 212
UPenn - BIOL - 212
UPenn - BIOL - 212
UPenn - BIOL - 212
REACTIVE ALLYLIC INTERMEDIATESBefore examining the reactions of allylic compounds, a review of reaction-energydiagrams is in order. Hammonds postulate states that related species that are similar inenergy are also similar in structure. The structure of
UPenn - BIOL - 212
OrganicOrganicChemistryChemistryWilliam H. BrownChristopher S. FooteBrent L. Iverson11-111-Ethers &amp;EthersEpoxidesEpoxidesChapter 1111-211-StructurexThe functional group of an ether is an oxygenatom bonded to two carbon atoms in dialkyl
UPenn - ENGL - 100
FINAL PROJECT: ANNOTATED BIBLIOGRAPHYDUE: THURSDAY, April 21st (no extensions you need to get this done on time!).Bring a hard copy to class. If you absolutely cannot be in class that day you may email acopy in .doc or .pdf format to: jfiumara@gmail.co
UPenn - ENGL - 100
Film History (Spring 2011)University of PennsylvaniaJames FiumaraBirth of Hollywood, WWI, Independent African-American Silent Filmfeature filmsstar systemMary PickfordautorenfilmCabiria (1914)serialsLouis FeuilladeCarl LaemmleUniversal CityAd
UPenn - ENGL - 100
Cine 101: World Film History to 1945Spring 2011FILM ANALYSIS: Due Tuesday February 22nd in class (bring hard copy!)Watch a film made between 1910 and 1927 (one that is not on the syllabus). Write a fivepage, double-spaced close analysis of the film con
UPenn - ENGL - 100
Cine 101: World Film History to 1945Midterm Review:Exam: Thursday, March 17th In-ClassYou are responsible for all of the material covered in the assigned readings, filmscreenings, and class lectures. The exam will consist of two parts: (1) shortident
UPenn - ENGL - 100
Cine 101: World Film History to 1945Midterm Review:Exam: Tuesday, May 5thThe Final Exam is not cumulative; it will cover from Sound Film (week of March 17th)through Film Noir. However, formal film terms regarding editing, cinematography, etc.might he
UPenn - ENGL - 100
World Film History to 1945University of PennsylvaniaCINEMATOGRAPHY TERMSdepth of fielddeep focusshallow focuseyeline match180 degree ruletracking (or dolly) shotSteadicamaspect ratioanamorphic widescreenpan &amp; scan3-point lightingkey lightfi
UPenn - ENGL - 100
Film History (Spring 2011)University of PennsylvaniaFiumaraKEYWORDS: EARLY CINEMAthe cinema of attractionsworlds fairssideshow or freak showamusement parksConey Islanddime museumsdioramaVaudevilleBritish musical hallsmagic lanternsphantasmag
UPenn - ENGL - 100
French Impressionism and Avant-Gardeavant-gardemodernismCubismFuturismMarcel Duchampcin-clubscinephiliaFrench Impressionist CinemaAbel GanceMarcel LHerbierGermaine DulacJean EpsteinLouis Dellucsubjectivityphotognieabstract filmspure cinem
UPenn - ENGL - 100
World Film History to 1945University of PennsylvaniaFrench Poetic Realism, France During WWII, AutuerismPoetic RealismJulien DuvivierPp le Moko (1936)Jean RenoirGrand Illusion (1937)Rules of the Game (1939)La Bete Humaine (1938)Emile ZolaNatura
UPenn - ENGL - 100
World Film History to 1945University of PennsylvaniaGERMAN CINEMA 1920sTreaty of VersaillesGerman NordiskDecla-BioscopUniversum Film AG (Ufa)Parufametcostume dramasErnst LubitschMadame Dubarry (1919)Kammerspiel (chamber dramas)The Last Laugh (
UPenn - ENGL - 100
World Film History to 1945University of PennsylvaniaThe Hollywood Studio Systemthe majorsbig 5little 3Poverty Rowstudio stylesdouble featurerear projectionoptical printermusicalscrewball comedyProduction CodeWill Hays
UPenn - ENGL - 100
World Film History to 1945University of PennsylvaniaHorror Film Origins to 1945genreaffectrepetition and differentiationfairy tales, folkloreJapanese kaidenFrancisco GoyaGothic literaturemystery playsFrench Grand GuignolEdisons Frankenstein (1
UPenn - ENGL - 100
World Film History to 1945University of PennsylvaniaJAPANESE CINEMAjidai-gekigendai-gekichambarakaijukabukibenshichained dramasTeinosuke KinugasaPage of Madness (1926)Shinkankaku group (School of New Perceptions)Pure Film MovementYasujiro Oz
UPenn - ENGL - 100
World Film History to 1945University of PennsylvaniaLate Silent Hollywoodvertical integrationblock bookingBalaban &amp; Katzpicture palaceMPPDAWill HaysDonts and Be Carefulssoft style of cinematographypanchromaticCecil B. DeMilleTen Commandments
George Mason - ENGR - 210
ENGR 210 Statics and DynamicsLecture 6Truss analysisGirum UrgessaMarch 07, 2012LECTURE 6 March 07, 20121OUTLINE1. Truss definitions (6.1)2. The method of joints (6.2)3. The method of sections (6.4)4. Zero-force members (6.3)LECTURE 6 March 07,