Sponsored Content
Top Forums Shell Programming and Scripting SED: language translation of a program Post 302288424 by taran on Tuesday 17th of February 2009 08:08:00 AM
Old 02-17-2009
sed -e 's/ date / DATE /g' file

or

perl -p -i -e 's/ date / DATE /g' file
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

need translation?

Can someone tell me exactly what this code is doing? # # gnutest # # Test launch of ghostscript (gs) from a script # rm gnutest.ps # # ------- calculation that would generate file(s) to # be plotted with gnuplot would be placed here ----------- # gnuplot << \E-o-f2 set... (1 Reply)
Discussion started by: wmosley2
1 Replies

2. Shell Programming and Scripting

How to use sed within shell program?

Hi, I tried this with my shell program and it didn't work: /usr/ucb/sed '/$employeeID/d' /usr1/log/logfile How to let sed see my variable employeeID within my shell program? Thanks! (1 Reply)
Discussion started by: whatisthis
1 Replies

3. Shell Programming and Scripting

How to use shell script's to get EPG Program with SED

This is my test script version: #!/bin/sh wget -q -O /tmp/axn 'http://www.axn.pt/programacion/' sed -e '/^$/ d' /tmp/axn > /tmp/temp #Clean black space sed -e 's/<*>//g' /tmp/temp > /tmp/temp1 #Remove HTML rm -f /tmp/temp # Step by step script then clean one by one sed... (3 Replies)
Discussion started by: single
3 Replies

4. UNIX for Advanced & Expert Users

unix awk/sed program

i need a sample unix awk/sed program to replace param3 in a file. i have sample file a.dat with the following format/length (week 8, sku 20, store 20 and qty 8). all store id's which end with _2 needs to be replaced with div id 2. all store id's which end with _1 needs to be replaced with div id... (4 Replies)
Discussion started by: mnnarendra
4 Replies

5. Shell Programming and Scripting

modify and use awk sed program

The following awk script creates a file b.dat. awk '{print substr($0,1,27),substr($2,index($2,"_")+1)," ",substr($0,49)}' a.dat > b.dat I need this script to be modified to also sum $3 values by distinct $1 and $2 fields. Current file W2_2009275 2 8 W2_2009275 2 7 W1_2009275 1... (3 Replies)
Discussion started by: mnnarendra
3 Replies

6. Shell Programming and Scripting

shell program with sed

I want to substitute a charactor "PAN" with "TAN" in a shell, I used sed command in shell, it wo'nt work but the same is run from command prompt it was successful. the command is sed ' s/PAN/TAN/g ' <i/p> > <o/p> sed ' s/^M/^M/g ' <i/p> > <o/p> (1st ^M is Ctrl+V+M, 2nd should be line feed/next... (1 Reply)
Discussion started by: anil_kut
1 Replies

7. Shell Programming and Scripting

looking for expert sed/script help for translation/substitution

Hi All, I'm looking for some expert help on sed/script to work out the best way to transform one xml format into another however there are a few complexities around translation. The extra complexities are to: 1) take the start and stop time (YYYYMMDDHHMMSS) and convert to start time to unix... (8 Replies)
Discussion started by: hotbaws11
8 Replies

8. What is on Your Mind?

The worlds first classical Chinese program language.

WOW, just WOW... It would be mighty interesting to see shell code translated to this. Kudos to the young guy who succeeded... 'https://spectrum.ieee.org/tech-talk/computing/software/classical-chinese?fbclid=IwAR25BRl8ezV4MkiYILJM-zT3_iN4fOu7cq-CkmhN5205YyVXO-IGmXJKiGA' Deliberately put... (3 Replies)
Discussion started by: wisecracker
3 Replies
DETOX.TBL(5)						      BSD File Formats Manual						      DETOX.TBL(5)

NAME
detox.tbl -- translation table for detox(1) OVERVIEW
detox allows for configuration of how the ISO 8859-1 and UTF-8 (Unicode) filters operate. Through text based translation tables, it is pos- sible to tune how these character sets are interpreted. SYNTAX
The format of the translation tables is simple. There are two levels: one containing meta data and one containing the actual translations. default _ Default specifies the default translation for a character. An empty or nonexistent default indicates that any unknown character should fall through to the next filter. In this manner, it is possible to chain together multiple translation tables in a sequence. start Indicates the start of a value list within the translation table. start lang Indicates the start of a language specific value list within the translation table. end Indicates the end of a value list within the translation table. value translation Value can be specified in decimal (1), hex (0x01) or octal (01). The same rules that apply to sscanf apply here. Translation can be a string or a quoted string, with either single or double quotes. EXAMPLE
default _ start 0x0101 a 0x0102 b end SEE ALSO
detox(1), detoxrc(5). AUTHORS
detox was written by Doug Harple. BSD
August 3, 2004 BSD
All times are GMT -4. The time now is 04:44 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy