Sponsored Content
Top Forums Shell Programming and Scripting Sed, how replace specific symbols between two patterns Post 303015169 by Tapiocapioca on Thursday 29th of March 2018 01:16:18 PM
Old 03-29-2018
Sed, how replace specific symbols between two patterns

I have a big xmltv file with many lines like:

Code:
<?xml version="1.0" encoding="UTF-8"?>
    <tv>
        <channel id="channel 1 +3HD">
            <display-name lang="it">channel +3HD</display-name>
            <icon src="http://mywebsite.com/dsgbnjfdc65657/channel +3HD.png" />
        </channel>
        <channel id="channel 4 HD">
            <display-name lang="it">channel 4 HD</display-name>
            <icon src="http://mywebsite.com/dsgbnjfdc65657/channel 4 HD.png" />
        </channel>
        <channel id="channel 8 ?? HD">
            <display-name lang="it">channel 8 ?? HD</display-name>
            <icon src="http://mywebsite.com/dsgbnjfdc65657/channel 8 ?? HD.png" />
        </channel>
    </tv>

I don't know why my webserver reject some names of png files, so I am trying to rename it.
I am trying to use the command sed but I am really bad about.
I want replace the spaces, the symbol +, the symbol ? and others with underscore _
I tought to use like a pattern the strings dsgbnjfdc65657/ and .png and modify the spaces, the symbol + and ? between, but I had back only errors...


I tried also with xmlstarlet to replace "spaces" with "_" but also I had only errors

Code:
mlstarlet ed -L -u '//icon/@src=" "' -v _ tv.xml

I really prefer if I can use sed

Can someone help me?

Last edited by Scrutinizer; 03-29-2018 at 03:40 PM.. Reason: quote tags -> code tags
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to replace symbols by position using SED

Hi all, I need your help. For example I have string in file.txt: -x -a /tmp/dbarchive_NSS_20081204 -f 900 -l 1 2008/12/04 2008/12/04 So, I need to replace symbols from (for e.g.) position 26 till 33 with symbols which I have in file replace.txt And I have no idea how to do it. If... (1 Reply)
Discussion started by: nypreH
1 Replies

2. Shell Programming and Scripting

using sed to replace a specific string on a specific line number using variables

using sed to replace a specific string on a specific line number using variables this is where i am at grep -v WARNING output | grep -v spawn | grep -v Passphrase | grep -v Authentication | grep -v '/sbin/tfadmin netguard -C'| grep -v 'NETWORK>' >> output.clean grep -n Destination... (2 Replies)
Discussion started by: todd.cutting
2 Replies

3. Shell Programming and Scripting

Using sed to replace specific character and specific position

I am trying to use sed to replace specific characters at a specific position in the file with a different value... can this be done? Example: File: A0199999123 A0199999124 A0199999125 Need to replace 99999 in positions 3-7 with 88888. Any help is appreciated. (5 Replies)
Discussion started by: programmer22
5 Replies

4. Shell Programming and Scripting

how to replace specific character , if possible using sed

My script is extracting data from SQl session, however sometimes the result contains one or multiple space after/before any numerical value. e,g . "123","1 34","1 3 45", "43 5" How to remove these unwanted spaces..so that I can get the following result : "123","134",1345","435" (1 Reply)
Discussion started by: mady135
1 Replies

5. Shell Programming and Scripting

Sed position specific replace

I'm drawing a blank on how to use sed to replace selectively based on position in the string (vs nth occurence): hello.|there.|how.|are.|you.| I want the period removed in the 3rd item (as defined by the pipe delimiter) if a period is present. So the result in this case would be: ... (2 Replies)
Discussion started by: tiggyboo
2 Replies

6. Shell Programming and Scripting

Using sed to replace a string in a specific position

I asked this before, but my problem got more complicated. Heres what I am trying to do: I'm trying to replace a string at a certain location with another string. Heres the file I'm trying to change: \E I want to replace the escape code at the 3rd line, 2nd column with this escape code... (3 Replies)
Discussion started by: tinman47
3 Replies

7. Shell Programming and Scripting

Replace specific field on specific line sed or awk

I'm trying to update a text file via sed/awk, after a lot of searching I still can't find a code snippet that I can get to work. Brief overview: I have user input a line to a variable, I then find a specific value in this line 10th field in this case. After asking for new input and doing some... (14 Replies)
Discussion started by: crownedzero
14 Replies

8. UNIX for Dummies Questions & Answers

Use sed to replace but only in a specific column of the text file

Hi, I would like to use sed to replace NA to x ('s/NA/x/g'), but only in the 5th column of the space delimited text file, nowhere else. How do I go about doing that? Thanks! (1 Reply)
Discussion started by: evelibertine
1 Replies

9. Shell Programming and Scripting

Using sed to replace a word at specific location

I'm try to change a the prohibit to aix for the lines starting with ssh and emagent and rest should be the same. Can anyone please suggest me how to do that using a shell script or sed passwd account required /usr/lib/security/pam_prohibit passwd session required ... (13 Replies)
Discussion started by: pjeedu2247
13 Replies

10. Shell Programming and Scripting

sed command on AIX, replace specific characters

Hi, Im using sed on an AIX machine. I am trying to change the 137-139 characters if they are a ' 36'/'000' to a '036'. The positions that need to be changed are fixed. the source data that I have is$cat v.txt 4000422985400050462239065593606500000007422985707771046154054910075641MC0318AMWAY... (9 Replies)
Discussion started by: dsid
9 Replies
IINFO(1)                                                      General Commands Manual                                                     IINFO(1)

NAME
iinfo - print information about images SYNOPSIS
iinfo [options] files... DESCRIPTION
The iinfo utility is invoked as follows: iinfo [options] filename... Where filename (and any following strings) names the image file(s) whose information should be printed. The image files may be of any for- mat recognized by OpenImageIO (i.e., for which ImageInput plugins are available). In its most basic usage, it simply prints the resolution, number of channels, pixel data type, and file format type of each of the files listed: $ iinfo img_6019m.jpg grid.tif lenna.png img_6019m.jpg : 1024 x 683, 3 channel, uint8 jpeg grid.tif : 512 x 512, 3 channel, uint8 tiff lenna.png : 120 x 120, 4 channel, uint8 png For a complete description, see /usr/share/doc/libopenimageio-dev/openimageio.pdf.gz. OPTIONS
--help Print help message -v Verbose output -m %s Metadata names to print (default: all) -f Prefix each line with the filename -s Sum the image sizes -a Print info about all subimages --hash Print SHA-1 hash of pixel values --stats Print image pixel statistics (data window) SEE ALSO
iconvert(1), idiff(1), igrep(1), iprocess(1), iv(1), maketx(1), oiiotool(1). AUTHOR
OpenImageIO was written by Larry Gritz and the other authors and contributors. This manual page was written by IRIE Shinsuke <irieshinsuke@yahoo.co.jp>, for the Debian project (and may be used by others). May 19, 2012 IINFO(1)
All times are GMT -4. The time now is 09:41 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy