Sponsored Content
Full Discussion: SED with White Space
Top Forums UNIX for Dummies Questions & Answers SED with White Space Post 302293173 by sandeep_1105 on Monday 2nd of March 2009 03:17:19 PM
Old 03-02-2009
SED with White Space

Dear Members,

Suppose i have a variable test which stores a string as below:

test='John drives+++++++++a+++++car'

now i want to use sed on the above variable and replace + with a white space, so that i get

echo $test should give me

'john drives a car'

Between "drives" and "a" i need 9 white spaces and between "a" and "car" i need 5 white spaces since i have 9 and 5 positive signs before.

How can i do this?
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

stripping white space...

Hi All; Having a problem with a file.. the file contains the following data... (a snapshot) 1331F9E9DB7C2BB80EAEDE3A8F043B94,AL7 1DZ,M,50 186FDF93E1303DBA217279EC3671EA91,NG5 1JU,M,24 3783FFAF602015056A8CD21104B1AAAF,CH42 4NQ,M,17 It has 3 columns sepreated by a , the second column... (7 Replies)
Discussion started by: Zak
7 Replies

2. Shell Programming and Scripting

how to protect white space in for loop

Hi All, I know there's a really simple answer to this but I just can't think of it :) I'm processing a file which has lines containing white space i.e. And I want to perform some awk on each line but when I do the following: for US in $( cat /tmp/unique-strings.tmp | sed 's/\/\\]/g'... (6 Replies)
Discussion started by: pondlife
6 Replies

3. Shell Programming and Scripting

Add white space to the end of a line with sed

Im trying to add 5 blank spaces to the end of each line in a file in a sed script. I can figure out who o put the spaces pretty much anywhere else but at the end. thanks Karl (7 Replies)
Discussion started by: karlanderson
7 Replies

4. Shell Programming and Scripting

Matching white space through Grep

Hello All, I am trying to match white space in patterns through - Grep I tried ] & ] but none of them worked. Then I tried Perl extension '\s' and it worked. So just wanted to know if ] & ] are still supported or have they become deprecated. However they have been mentioned in the... (3 Replies)
Discussion started by: paragkalra
3 Replies

5. Shell Programming and Scripting

sed + white space

Hi, What sed command (if sed is the right command) can remove ALL white space from my file. I have a csv, except I want to remove all white space between commas and characters. My idea (without testing) sed 's/ //g' Is there a better way? (18 Replies)
Discussion started by: mcclunyboy
18 Replies

6. Shell Programming and Scripting

Delete white space using sed

Hi , I have a file with contents as below group1 = aaaaa, bbbbb, ccccc, aaa group2=aaa, bbbbb, ccccc, aaaaa group3 = bbbbb, aaa, ccccc, aaaaa group4 = bbbbb, aaa,ccccc, aaaaa I want to search for "aaa" and the output should be as below group1 = aaaaa, bbbbb, ccccc group2= bbbbb, ccccc,... (3 Replies)
Discussion started by: anil8103
3 Replies

7. UNIX for Dummies Questions & Answers

filename with white space

our user creates a text file with a white space on the filename. this same file is transfered to unix via automation tool. i have a korn shell script that reads these files on a input directory and connects to oracle database to run the oracle procedures which will load the data from each of the... (2 Replies)
Discussion started by: wtolentino
2 Replies

8. Shell Programming and Scripting

Remove unwanted white space

Hi, I have a very big file 25GB with information present in it like $ head ind_stats update index statistics pfirm001.dbo.Office using 200 values go ... (11 Replies)
Discussion started by: sam05121988
11 Replies

9. Shell Programming and Scripting

Removing white space in awk

Hi How to remove white space from this input:|blue | 1| |green| 4| |black| 2| I like to search for green and get 4not 4 How to modify this to work correct:awk -F"|" '/green/ {print $3} (7 Replies)
Discussion started by: Jotne
7 Replies

10. Shell Programming and Scripting

Add white space

hi guys how can i add spacein file name with sed if strings have no space around dash input 19-20 ( 18-19 ) ABC-EFG output after add white space 19 - 20 (18 - 19 ) ABC - EFG thx in advance (2 Replies)
Discussion started by: mhs
2 Replies
GRAPH-EASY(1p)						User Contributed Perl Documentation					    GRAPH-EASY(1p)

NAME
graph-easy - render/convert graphs in/from various formats SYNOPSIS
Convert between graph formats and layout/render graphs: graph-easy [options] [inputfile [outputfile]] echo "[ Bonn ] - car -> [ Berlin ]" | graph-easy graph-easy --input=graph.dot --as_ascii graph-easy --html --output=mygraph.html graph.txt graph-easy graph.txt graph.svg graph-easy graph.txt --as_dot | dot -Tpng -o graph.png graph-easy graph.txt --png graph-easy graph.vcg --dot graph-easy graph.dot --gdl graph-easy graph.dot --graphml ARGUMENTS
Here are the most important options, more are listed in the full documentation: --help Print the full documentation, not just this short overview. --input Specify the input file name. Example: graph-easy --input=input.txt The format will be auto-detected, override it with --from. --output Specify the output file name. Example: graph-easy --output=output.txt input.txt --as Specify the output format. Example: graph-easy --as=ascii input.txt Valid formats are: ascii ASCII art rendering boxart Unicode Boxart rendering html HTML svg Scalable Vector Graphics graphviz the DOT language dot alias for "graphviz" txt Graph::Easy text vcg VCG (Visualizing Compiler Graphs - a subset of GDL) text gdl GDL (Graph Description Language) text graphml GraphML In addition, the following formats are understood and piped through the program specified with the --renderer option (default: dot): bmp Windows bitmap gif GIF hpgl HP-GL/2 vector graphic jpg JPEG pcl PCL printer language pdf PDF png PNG ps Postscript ps2 Postscript with PDF notations (see graphviz documentation) tga Targa bitmap tif TIFF bitmap The default format will be determined by the output filename extension, and is "ascii", if the output filename was not set. You can also use ONE argument of the form "--as_ascii" or "--ascii". --from Specify the input format. Valid formats are: graphviz the DOT language txt Graph::Easy text vcg VCG text gdl GDL (Graph Description Language) text If not specified, the input format is auto-detected. You can also use ONE argument of the form "--from_dot", etc. --renderer The external program (default: "dot") used to render the output formats like "png", "jpg" etc. Some choices are "neato", "twopi", "fdp" or "circo". --parse Input will only be parsed, without any output generation. Useful in combination with "--debug=1" or "--stats". Example: graph-easy input.txt --parse --debug=1 --stats Write various statistics about the input graph to STDERR. Best used in combination with "--parse": graph-easy input.txt --parse --stats --timeout Set the timeout in seconds for the Graph::Easy layouter that generates ASCII, HTML, SVG or boxart output. If the layout does not finish in this time, it will be aborted. Example: graph-easy input.txt --timeout=500 Conversion to DOT, VCG/GDL, GraphML or plain text ignores the timeout. The default is 240 seconds (4 minutes). --verbose Write info regarding the conversion process to STDERR. DESCRIPTION
"graph-easy" reads a description of a graph (a connected network of nodes and edges, not a pie chart :-) and then converts this to the desired output format. By default, the input will be read from STDIN, and the output will go to STDOUT. The input is expected to be encoded in UTF-8, the output will also be UTF-8. It understands the following formats as input: Graph::Easy http://bloodgate.com/perl/graph/manual/ DOT http://www.graphviz.org/ VCG http://rw4.cs.uni-sb.de/~sander/html/gsvcg1.html GDL http://www.aisee.com/ The formats are automatically detected, regardless of the input file name, but you can also explicitly declare your input to be in one specific format. The output can be a dump of the graph in one of the following formats: Graph::Easy http://bloodgate.com/perl/graph/manual/ DOT http://www.graphviz.org/ VCG http://rw4.cs.uni-sb.de/~sander/html/gsvcg1.html GDL http://www.aisee.com/ GraphML http://graphml.graphdrawing.org/ In addition, "Graph::Easy" can also create layouts of graphs in one of the following output formats: HTML SVG ASCII BOXART Note that for SVG output, you need to install the module Graph::Easy::As_svg first. As a shortcut, you can also specify the output format as 'png', this will cause "graph-easy" to pipe the input in graphviz format to the "dot" program to create a PNG file in one step. The following two examples are equivalent: graph-easy graph.txt --dot | dot -Tpng -o graph.png graph-easy graph.txt --png OTHER ARGUMENTS
"graph-easy" supports a few more arguments in addition to the ones from above: --version Write version info and exit. --debug=N Set the debug level (1..3). Warning, this will generate huge amounts of hard to understand output on STDERR. Example: graph-easy input.txt --output=test.html --debug=1 --png, --dot, --vcg, --gdl, --txt, --ascii, --boxart, --html, --svg Given exactly one of these options, produces the desired output format. EXAMPLES
ASCII output echo "[ Bonn ] -- car --> [ Berlin ], [ Ulm ]" | graph-easy +--------+ car +-----+ | Bonn | -----> | Ulm | +--------+ +-----+ | | car v +--------+ | Berlin | +--------+ Graphviz example output echo "[ Bonn ] -- car --> [ Berlin ], [ Ulm ]" | graph-easy --dot digraph GRAPH_0 { edge [ arrowhead=open ]; graph [ rankdir=LR ]; node [ fontsize=11, fillcolor=white, style=filled, shape=box ]; Bonn -> Ulm [ label=car ] Bonn -> Berlin [ label=car ] } VCG example output echo "[ Bonn ] -- car --> [ Berlin ], [ Ulm ]" | graph-easy --vcg graph: { title: "Untitled graph" node: { title: "Berlin" } node: { title: "Bonn" } node: { title: "Ulm" } edge: { label: "car" sourcename: "Bonn" targetname: "Ulm" } edge: { label: "car" sourcename: "Bonn" targetname: "Berlin" } } GDL example output GDL (Graph Description Language) is a superset of VCG, and thus the output will look almost the same as VCG: echo "[ Bonn ] -- car --> [ Berlin ], [ Ulm ]" | graph-easy --gdl graph: { title: "Untitled graph" node: { title: "Berlin" } node: { title: "Bonn" } node: { title: "Ulm" } edge: { label: "car" source: "Bonn" target: "Ulm" } edge: { label: "car" source: "Bonn" target: "Berlin" } } GraphML example output GraphML is XML: echo "[ Bonn ] -- car --> [ Berlin ], [ Ulm ]" | graph-easy --graphml <?xml version="1.0" encoding="UTF-8"?> <graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd"> <!-- Created by Graph::Easy v0.58 at Mon Aug 20 00:01:25 2007 --> <key id="d0" for="edge" attr.name="label" attr.type="string"/> <graph id="G" edgedefault="directed"> <node id="Berlin"> </node> <node id="Bonn"> </node> <node id="Ulm"> </node> <edge source="Bonn" target="Berlin"> <data key="d0">car</data> </edge> <edge source="Bonn" target="Ulm"> <data key="d0">car</data> </edge> </graph> <graphml> CAVEATS
Please note that it is impossible to convert 100% from one format to another format since every graph language out there has features that are unique to only this language. In addition, the conversion process always converts the input first into an Graph::Easy graph, and then to the desired output format. This means that only features and attributes that are actually valid in Graph::Easy are supported yet. Work in making Graph::Easy an universal format supporting as much as possible is still in progress. Attributes that are not yet supported natively by Graph::Easy are converted to custom attributes with a prefixed "x-format-", f.i. "x-dot-". Upon output to the same format, these are converted back, but conversion to a different format will lose these attributes. For a list of what problems still remain, please see the TODO file in the "Graph::Easy" distribution on CPAN: http://search.cpan.org/~tels/Graph-Easy/ <http://search.cpan.org/~tels/Graph-Easy/> If you notice anything wrong, or miss attributes, please file a bug report on http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Graph-Easy <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Graph-Easy> so we can fix it and include the missing things into Graph::Easy! LICENSE
This library is free software; you can redistribute it and/or modify it under the terms of the GPL. See the LICENSE file of Graph::Easy for a copy of the GPL. This product includes color specifications and designs developed by Cynthia Brewer (<http://colorbrewer.org/>). See the LICENSE file for the full license text that applies to these color schemes. AUTHOR
Copyright (C) 2004 - 2008 by Tels <http://bloodgate.com> SEE ALSO
More information can be found in the online manual of Graph::Easy: <http://bloodgate.com/perl/graph/manual/> See also: Graph::Easy, Graph::Easy::Manual perl v5.14.2 2011-12-23 GRAPH-EASY(1p)
All times are GMT -4. The time now is 01:54 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy