Sponsored Content
Full Discussion: sed non ascii value remove
Top Forums Shell Programming and Scripting sed non ascii value remove Post 303043446 by bmk123 on Wednesday 29th of January 2020 02:03:57 AM
Old 01-29-2020
@Scrutinizer @RudiC thanks for quick respone.



i tried below one and getting the below error.



Code:
sed 's/[^\x00-\x7F]//g'


sed: -e expression #1, char 17: Invalid collation character
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sed remove

anyone out there knows how to remove pattern <random string> use sed? (6 Replies)
Discussion started by: jamwong
6 Replies

2. Shell Programming and Scripting

sed over writes my original file (using sed to remove leading spaces)

Hello and thx for reading this I'm using sed to remove only the leading spaces in a file bash-280R# cat foofile some text some text some text some text some text bash-280R# bash-280R# sed 's/^ *//' foofile > foofile.use bash-280R# cat foofile.use some text some text some text... (6 Replies)
Discussion started by: laser
6 Replies

3. Shell Programming and Scripting

How to tell SED to emit output in 8-bit ASCII only?

I have to mangle some "plain ASCII" text file (i.e. 8 bits/characters where the text DOES contain characters like Umlauts and accented characters from the upper 7-bits range, i.e. with hex codes in ). For this I am trying to use SED which I downloaded as part of cygwin package (yes, I am doing... (0 Replies)
Discussion started by: mmo
0 Replies

4. Shell Programming and Scripting

convert ascii values into ascii characters

Hi gurus, I have a file in unix with ascii values. I need to convert all the ascii values in the file to ascii characters. File contains nearly 20000 records with ascii values. (10 Replies)
Discussion started by: sandeeppvk
10 Replies

5. Shell Programming and Scripting

sed to remove

Hello I have a file with records...The records have several lines and have start and end born... This is a template: 000000001 LDR L ^^^^^nam^^2200325Iia^45e0 000000001 022 L $$a0081-3397 000000001 041 L $$aSPA 000000001 088 L $$aJ.E.N. 551 000000001 090 L $$aINFORMES JEN... (22 Replies)
Discussion started by: ldiaz2106
22 Replies

6. Shell Programming and Scripting

remove pattern with sed

Hi, i want to remove a certain pattern when i type pwd. pwd will look like this: ..../....../....../Pat_logs/..../....../...../...... the dotted lines are just random directory names, i want it to remove the "Pat_logs/...../....../....../" part so for example: ... (5 Replies)
Discussion started by: a27wang
5 Replies

7. Shell Programming and Scripting

Remove some special ascii character

Hello I have this special caracter after retreving rows from sql server: "....spasses: • Entrem al valort 6050108002811 • El donem..." I would like a sed command to remove it..or just know it's ascii code in order to replace it into my sql sentence.. Hope some one knows how to do that.... (7 Replies)
Discussion started by: ldiaz2106
7 Replies

8. Shell Programming and Scripting

Grep to remove non-ASCII characters

I have been having an encoding problem that I need to solve. I have an 4-column tab-separated file: I need to remove all of the lines that contain the string 'vis-à-vis' achiever-n vis-à-vis+ns-j+vp oppose-v 1 achiever-n vis-à-vis+ns-the+vg assess-v 1 administrator-n ... (4 Replies)
Discussion started by: owwow14
4 Replies

9. Shell Programming and Scripting

Convert Hex to Ascii in a Ascii file

Hi All, I have an ascii file in which few columns are having hex values which i need to convert into ascii. Kindly suggest me what command can be used in unix shell scripting? Thanks in Advance (2 Replies)
Discussion started by: HemaV
2 Replies

10. Shell Programming and Scripting

Need to remove first and last character using sed

Hi I have file in below format. How i can remove the first and lost comma from this below file ,001E:001F,,,02EE,0FED:0FEF, I need output has below 001E:001F,,,02EE,0FED:0FEF (6 Replies)
Discussion started by: ranjancom2000
6 Replies
struct::prioqueue(n)						Tcl Data Structures					      struct::prioqueue(n)

__________________________________________________________________________________________________________________________________________________

NAME
struct::prioqueue - Create and manipulate prioqueue objects SYNOPSIS
package require Tcl 8.2 package require struct::prioqueue ?1.4? ::struct::prioqueue ?-ascii|-dictionary|-integer|-real? ?prioqueueName? prioqueueName option ?arg arg ...? prioqueueName clear prioqueueName remove item prioqueueName destroy prioqueueName get ?count? prioqueueName peek ?count? prioqueueName peekpriority ?count? prioqueueName put item prio ?item prio ...? prioqueueName size _________________________________________________________________ DESCRIPTION
This package implements a simple priority queue using nested tcl lists. The command ::struct::prioqueue creates a new priority queue with default priority key type -integer. This means that keys given to the put subcommand must have this type. This also sets the priority ordering. For key types -ascii and -dictionary the data is sorted in ascending order (as with lsort -increas- ing), thereas for -integer and -real the data is sorted in descending order (as with lsort -decreasing). Prioqueue names are unrestricted, but may be recognized as options if no priority type is given. ::struct::prioqueue ?-ascii|-dictionary|-integer|-real? ?prioqueueName? The ::struct::prioqueue command creates a new prioqueue object with an associated global Tcl command whose name is prioqueueName. This command may be used to invoke various operations on the prioqueue. It has the following general form: prioqueueName option ?arg arg ...? option and the args determine the exact behavior of the command. The following commands are possible for prioqueue objects: prioqueueName clear Remove all items from the prioqueue. prioqueueName remove item Remove the selected item from this priority queue. prioqueueName destroy Destroy the prioqueue, including its storage space and associated command. prioqueueName get ?count? Return the front count items of the prioqueue (but not their priorities) and remove them from the prioqueue. If count is not speci- fied, it defaults to 1. If count is 1, the result is a simple string; otherwise, it is a list. If specified, count must be greater than or equal to 1. If there are no or too few items in the prioqueue, this command will throw an error. prioqueueName peek ?count? Return the front count items of the prioqueue (but not their priorities), without removing them from the prioqueue. If count is not specified, it defaults to 1. If count is 1, the result is a simple string; otherwise, it is a list. If specified, count must be greater than or equal to 1. If there are no or too few items in the queue, this command will throw an error. prioqueueName peekpriority ?count? Return the front count items priority keys, without removing them from the prioqueue. If count is not specified, it defaults to 1. If count is 1, the result is a simple string; otherwise, it is a list. If specified, count must be greater than or equal to 1. If there are no or too few items in the queue, this command will throw an error. prioqueueName put item prio ?item prio ...? Put the item or items specified into the prioqueue. prio must be a valid priority key for this type of prioqueue, otherwise an error is thrown and no item is added. Items are inserted at their priority ranking. Items with equal priority are added in the order they were added. prioqueueName size Return the number of items in the prioqueue. BUGS, IDEAS, FEEDBACK This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category struct :: prioqueue of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either package and/or documentation. KEYWORDS
ordered list, prioqueue, priority queue CATEGORY
Data structures COPYRIGHT
Copyright (c) 2003 Michael Schlenker <mic42@users.sourceforge.net> struct 1.4 struct::prioqueue(n)
All times are GMT -4. The time now is 09:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy