Sed - CompWisdom
About us  |  Why use us?  |  Press  |  Contact us

 

Topic: Sed



  
 Sed at opensource encyclopedia
Sed and AWK are often cited as the progenitors and inspiration for Perl; in particular the s/// syntax from the example above is part of Perl's syntax.
Sed's language does not have variables and only primitive GOTO and branching functionality; nevertheless, the language is Turing-complete.
Sed (which stands for Stream EDitor) is a simple but powerful computer program used to apply various pre-specified textual transformations to a sequential stream of text data.
http://www.wiki.tatet.com/Sed.html   (657 words)

  
 sed, the stream editor
The text files are for any sed user; the binaries are for DOS/Windows users.
And because sed is external to the word processor and comes with every Unix system in the world, once you learn sed you'll have a very handy tool in your toolkit, even if (like me) you rarely use Unix.
gsed103 - GNU sed v1.03 binaries, with support for Win95 long filenames.
http://www.cornerstonemag.com/sed   (1098 words)

  
 Handy one-liners for SED
After all the commands have been applied to the first input line, that line is output and a second input line is taken for processing, and the cycle repeats.
We have used the syntax which will be portable to most users of sed, even though the popular GNU versions of sed allow a more succinct syntax.
VERSIONS OF SED: Versions of sed do differ, and some slight syntax variation is to be expected.
http://www-h.eng.cam.ac.uk/help/tpl/unix/sed.html   (834 words)

  
 sed FAQ, version 014
sed is not intended to process binary or object code, and files which contain nulls (0x00) will usually generate errors in most versions of sed (GNU sed 3.02a is an exception; it allows nulls in the input files and also in regexes).
Sed (or awk or perl) should be used to validate the integrity of the data file before you attempt to alter it or extract particular fields from the file.
All versions of sed in this section except the CP/M versions are based on the GNU general public license and are "free software" by that standard (for details, see http://www.gnu.org/philosophy/free-sw.html).
http://www.faqs.org/faqs/editor-faq/sed   (13989 words)

  
 Using the sed Editor in Linux
The sed tool allows you to create a script file containing commands that are processed from the file, rather than at the command line, and is referenced via the "-f" option.
The default is for sed to display on the screen (or to a file, if so redirected) every line from the original file, whether it is affected by an edit operation or not; the "-n" parameter overrides this action.
Thus you have the flexibility of choosing which lines to changes (essentially, restricting the changes) based upon matching criteria that can be either line numbers or a matched pattern.
http://www.oracle.com/technology/pub/articles/dulaney_sed.html   (4011 words)

  
 sed
Sed works as follows: it reads from the standard input, one line at a time.
Works with GNU sed, but this feature might not work with other forms of sed.
sed reads the standard input into the pattern space, performs a sequence of editing commands on the pattern space, then writes the pattern space to STDOUT.
http://pegasus.rutgers.edu/~elflord/unix/sed.html   (1809 words)

  
 Common threads: Sed by example, Part 1
Sed works by performing any number of user-specified editing operations ("commands") on the input data.
Fortunately for us Linux users, one of the nicest versions of sed out there happens to be GNU sed, which is currently at version 3.02.
This is because, again, sed only reads from the file you specify on the command line, using it as input -- it doesn't try to modify the file.
http://www-106.ibm.com/developerworks/linux/library/l-sed1.html   (2359 words)

  
 Getting Started with Sed
sed reads from a file or from its standard input, and outputs to its standard output.
This qref is written for a semi-knowledgable UNIX user who has just come up against a problem and has been advised to use sed to solve it.
You will generally want to redirect that into a file, but that is not done in these examples just because it takes up space.
http://www.cs.hmc.edu/tech_docs/qref/sed.html   (1424 words)

  
 [No title]
Since only a few lines of the input reside in core at one time, and no temporary files are used, the effective size of file that can be edited is limited only by the requirement that the input and output fit simultaneously into available secondary storage.
SED - A Non-interactive Text Editor Lee E. McMahon Context search Editing ABSTRACT Sed is a non-interactive context editor that runs on the UNIX- operating system.
The principal loss of functions compared to an interactive editor are lack of relative addressing (because of the line-at-a-time operation), and lack of immediate verifica- tion that a command has done what was intended.
http://www.urc.bl.ac.yu/manuals/progunix/sed.txt   (3672 words)

  
 Hartigan/Computer
Its functionality follows its name: sed operates on an input file line by line, and edits each line according to the instructions you give it.
sed is a great way to edit lots of files simultaneously.
It is available with every unix system I've seen.
http://sparky.rice.edu/~hartigan/sed.html   (392 words)

  
 sed
Also note that \n cannot be used to match a newline character at the end of an arbitrary input line; newline characters appear in the pattern space as a result of the N editing command.
Whenever the pattern space is written to standard output or a named file, sed will immediately follow it with a newline character.
Regular expressions match entire strings, not just individual lines, but a newline character is matched by \n in a sed RE; a newline character is not allowed in an RE.
http://www.opengroup.org/onlinepubs/007908799/xcu/sed.html   (2269 words)

  
 UNIX man pages : sed ()
For example, ``sed -n 1~2p'' will print all the odd-numbered lines in the input stream, and the address 2~5 will match every fifth line, starting with the second.
A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline).
This is similar to 1,addr2, except that if addr2 matches the very first line of input the 0,addr2 form will be at the end of its range, whereas the 1,addr2 form will still be at the beginning of its range.
http://unixhelp.ed.ac.uk/CGI/man-cgi?sed   (1054 words)

  
 Seders's grab bag - Tutorials
Part 1 of Greg Ubben's analysis of a complex sed script he wrote to sort, delimit and number an input file containing tabulated data.
It examines each of sed's functions in depth and includes useful examples.
The definitive introduction, this well-known document used to be distributed with UNIX systems.
http://sed.sourceforge.net/grabbag/tutorials   (274 words)

  
 Amazon.com: sed & awk (2nd Edition): Books: Dale Dougherty,Arnold Robbins
Both sed and awk are an essential part of any UNIX operating system, and both echo with the prestige of the master programmers that designed them.
sed & awk describes two text processing programs that are mainstays of the UNIX programmer's toolbox.
The first chapter section is entitled "May You Solve Interesting Problems" a paraphrase of the old Chinese curse, but with sed and awk no problem seems insurmountable and will make all problems appear interesting.
http://www.amazon.com/exec/obidos/tg/detail/-/1565922255?v=glance   (1613 words)

  
 GNU sed Computer Encyclopedia Enterprise Resource Directory Complete Guide to Internet
A {GNU} version of the standard {Unix} {Sed} stream editor.
GNU sed Computer Encyclopedia Enterprise Resource Directory Complete Guide to Internet
http://www.jaysir.com/computer-encyclopedia/g/gnu-sed-computer-terms.htm   (31 words)

  
 Sed for Windows
Sed is typically used for extracting part of a file using pattern matching or substituting multiple occurances of a string within a file.
IBM Developer Works Common Threads: Sed by Example:
More information can be found in the docs provided with the package, and in
http://gnuwin32.sourceforge.net/packages/sed.htm   (271 words)

  
 Sed - An Introduction and Tutorial
That is, the input line is read, and when a pattern is matched, the modified output is generated, and the rest of the input line is scanned.
If you want to write a program to make changes in a file, sed is the tool to use.
Newer versions of sed may support comments at the end of the line as well.
http://www.grymoire.com/Unix/Sed.html   (8694 words)

  
 Canon Technology -SED-
In other words, SEDs are highly earth-friendly, meeting the needs of the times.
The SED, based on a new type of flat-panel display technology, was created through the merging of Canon's proprietary electron-emission and microfabrication technologies with Toshiba's CRT technology and mass-production tehcnologies for liquid crystal displays (LCDs) and semiconductors.
Canon Technology > Product Technologies > Display > SED
http://www.canon.com/technology/display   (560 words)

  
 Technorati Tag: sed
Shipping Solutions is the easy way to complete your shipper's export declaration (SED) or file the information electronically through AES.
在sed中使用循环 循环通常都可以写为条件转移的形式。sed没有专门的循环语句,但提供了转移的命令, do while not EOF read line...
SED Form in Microsoft Excel Point and click your way to perfect customs documents every time in Microsoft Excel.
http://www.technorati.com/tag/sed   (481 words)

  
 SED - Institute for Development Policy and Management (IDPM) - University of Manchester
Follow this link for more information on the studentships and on the programmes they apply to.
SED - Institute for Development Policy and Management (IDPM) - University of Manchester
Competition now open - Deadline 30 May 2006
http://www.sed.manchester.ac.uk/idpm   (534 words)

  
 FTD - Regulations: Forms
Printing instructions for the Shipper's Export Declaration (SED)
The Correct Way to Fill Out the SED
Questions may be addressed to our Regulations, Outreach and Education Branch or by e-mailing ftdregs@census.gov.
http://www.census.gov/foreign-trade/regulations/forms   (197 words)

  
 Define surface-conduction electron-emitter display - a Whatis.com definition - see also: SED
Prototype electron emitters have been developed with diameters of a few nanometers (billionths of a meter).
The surface-conduction electron-emitter display (SED) is a flat-panel, high-resolution display currently under development by Canon and Toshiba.
The SED consists of an array of electron emitters and a layer of phosphor, separated by a small space from which all the air has been evacuated.
http://searchwinit.techtarget.com/sDefinition/0,,sid1_gci797765,00.html   (265 words)

  
 SED Systems
Established in 1965, SED is a provider of turnkey systems.
We are serving customers around the world with strong, proven capabilities in project management, engineering, manufacturing, and quality assurance.
© 2003 SED Systems - a division of CALIAN Ltd.
http://www.sedsystems.ca   (177 words)

  
 Socialist Unity Party of Germany - Wikipedia, the free encyclopedia
A problem the Soviets identified with the early SED was its potential to develop into a nationalist party.
Soviet negotiators reported that SED politicians frequently pushed past the boundaries of the political statements which had been approved by the Soviet monitors, and there was some initial difficulty making provincial SED parties realize that they should think carefuly before opposing the political positions decided upon by the Central Committee in Berlin.
As a result, the early SED party apparatus frequnelty became effectively immobilised as former KPD members began discussing any proposal, however small, at great length with the former SPD members, so as to achieve consensus and avoid offending them.
http://en.wikipedia.org/wiki/Socialist_Unity_Party_of_Germany   (791 words)

  
 Statistical Engineering Division
The Statistical Engineering Division, part of NIST's Information Technology Laboratory, provides statistical consulting to the NIST laboratories and performs statistical research.
NIST users can also access the SED internal web site.
The federal (postmarked) deadline for applying for the SED Division Chief position is fast approaching: Tuesday, January 31, 2006.
http://www.itl.nist.gov/div898   (270 words)

  
 sed
Print all lines from the file phonebook that end with 76 :
tells sed to search for lines which end with 76.
Print all lines from the file phonebook that contain 76 :
http://www.emunix.emich.edu/~khailany/files/sed-examples.htm   (323 words)

  
 SED 2006 - The National Event for Construction
Kubota, the UK, European and world leader in mini excavators will be exhibiting and demonstrating selected models from its market-leading range at SED - including the preview of a new 8 tonne KX080-3 high performance machine.
SED will see the latest release from Universal Hydraulic Sytem - The K9-4 Pro series III.
SED 2006 - The National Event for Construction
http://www.sed.co.uk   (226 words)

  
 Southeastern District, LCMS
The Southeastern District (SED) of the Lutheran Church-Missouri Synod (LCMS) is a regional district of the LCMS providing vision for the new missionary age so that SED churches and schools will become strong congregations working in creative partnership for the sake of God's mission to the world.
http://www.se.lcms.org   (47 words)

  
 SED
Letter from the co-ordinating editor of the Review of Economic Dynamics
Online registration for SED membership and subscription to Review of Economic Dynamics
http://www.economicdynamics.org/society.htm   (23 words)

  
 CATHOLIC ENCYCLOPEDIA: Purgatory
This opinion of St. Bonaventure, that the Church through its Supreme Pastor does not absolve juridically the souls in purgatory from the punishment due their sins, is the teaching of the Doctors.
v) agrees with St. Thomas, but adds that such "relaxation cannot be after the manner of absolution as in the case of the living but only as suffrage (Haec non tenet modum judicii, sed potius suffragii).
http://www.newadvent.org/cathen/12575a.htm   (4487 words)

Compwisdom
 About us   |  Why use us?   |  Press   |  Contact us

 Copyright © 2006 CompWisdom.com Usage implies agreement with terms.