How to replace all but the first 3 characters with sed?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to replace all but the first 3 characters with sed?
# 8  
Old 02-09-2015
Hi,
Beware with builtin 'read' of bash, because if you specified a variable, you lost spaces that begin a line, example:
Code:
$ read -r line <<<"    foobar"
$ echo "$line"
foobar
$ read -r <<<"    foobar"
$ echo "$REPLY"
    foobar
$

Is it a bug ? I don't know
Regards.
This User Gave Thanks to disedorgue For This Post:
# 9  
Old 02-09-2015
Good point. This is not a bug, it is because of the IFS internal field separator.
Code:
$ IFS= read -r line <<<"    foobar"
$ printf "%s\n" "$line" 
    foobar
$


To preserve content of a file including spaces while processing line by line in shell,
  1. Set IFS to "" and local to the read operation
  2. Use -r to avoid interpretation of \
  3. Use printf, rather than echo to make sure that a particular version of echo does not interpret the content of the variable, and the output will come out right.
  4. Prevent variable expansion from field splitting and globbing by using double quotes around it.

So:
Code:
while IFS= read -r line
do
  printf "%s\n" "$line"
done < file

Since the IFS variable is set local to the read operation, it will retain its original value after the fact..

Last edited by Scrutinizer; 09-17-2016 at 12:18 PM..
These 2 Users Gave Thanks to Scrutinizer For This Post:
# 10  
Old 02-10-2015
Code:
$ cat file
abababab
cdcdcdcdcd
efefefefe
$ sed "s/./*/4g" file
aba*****
cdc*******
efe******

This User Gave Thanks to anbu23 For This Post:
# 11  
Old 02-10-2015
Quote:
Originally Posted by anbu23
Code:
$ cat file
abababab
cdcdcdcdcd
efefefefe
$ sed "s/./*/4g" file
aba*****
cdc*******
efe******

Unfortunately, the standards say the results are unspecified if you have both a number and a g flag for a sed substitute command. On some systems, you will get what you showed above. On others, you'll get something like:
Code:
sed: 1: "s/./*/4g": more than one number or 'g' in substitute flags

as is the result on OS X.
This User Gave Thanks to Don Cragun For This Post:
# 12  
Old 02-10-2015
Hi guys...

I did not forget IFS="" to account for leading spaces, I just worked on the OP's post to have alpha characters starting but allowed for spaces inside any line which worked.
Yes there are spaces at the end of one line.

However with the extra line added, (note IFS is not saved in this DEMO.)
Code:
AMIGA:barrywalker~> IFS=""
AMIGA:barrywalker~> echo 'kajhd(*&&#$%^ASDFGHJ{}][!\\|\00
123131,.,xv.,c.,.?><lksdlfk
     barry
A*b*C***Klom
abnm
n n n n n
 n n n n n' > /tmp/txt
AMIGA:barrywalker~> while read -r line; do pad="${line:3}"; echo $line; echo -E "${line:0:3}${pad//[' '-~]/*}"; done < /tmp/txt
kajhd(*&&#$%^ASDFGHJ{}][!\\|\00
kaj****************************
123131,.,xv.,c.,.?><lksdlfk
123************************
     barry
   *******
A*b*C***Klom
A*b*********
abnm
abn*
n n n n n
n n******
 n n n n n   
 n **********
AMIGA:barrywalker~> _


Last edited by wisecracker; 02-10-2015 at 05:18 AM.. Reason: Show spaces at the end of one line...
# 13  
Old 02-10-2015
With awk:
Code:
awk '{x=substr($0,N+1); gsub(".","*",x); print substr($0,1,N) x}' N=3 file

# 14  
Old 02-10-2015
Quote:
Originally Posted by anbu23
Code:
$ cat file
abababab
cdcdcdcdcd
efefefefe
$ sed "s/./*/4g" file
aba*****
cdc*******
efe******

The combination of a number flag and a g flag is a GNU sed extension. Still, it is a nice solution, when GNU sed is available...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. Shell Programming and Scripting

sed replace characters using a wildcard

Hello, I have some data that looks like the following, > <SALTDATA> (OVS0199262) HCl > <IDNUMBER> (OVS0199262) OVS0199262 > <SUPPLIER> (OVS0199262) TimTec > <EMAIL> (OVS0199262) info@timtec.net > <WEBSITE> (OVS0199262) http://www.timtec.net I need to remove the data in... (3 Replies)
Discussion started by: LMHmedchem
3 Replies

3. Shell Programming and Scripting

sed replace nth characters with string

Hi, I hope you can help me out please? I need to replace from character 8-16 with AAAAAAAA and the rest should stay the same after character 16 gtwrhtrd11111111rjytwyejtyjejetjyetgeaEHT wrehrhw22222222hytekutkyukrylryilruilrGEQTH hrwjyety33333333gtrhwrjrgkreglqeriugn;RUGNEURGU ... (4 Replies)
Discussion started by: stinkefisch
4 Replies

4. Shell Programming and Scripting

Replace characters infile with sed

I have several files in a directory that look like this: jacket-n r potential-n - outcome-n f reputation-n b I want to replace the characters in the second column with certain numbers. For instance, I want the letters 'f', 'r' and 'b' in the second column to replaced with 0 and I want the... (1 Reply)
Discussion started by: owwow14
1 Replies

5. Shell Programming and Scripting

sed replace range of characters in each line

Hi, I'm trying to replace a range of characters by their position in each line by spaces. I need to replace characters 95 to 145 by spaces in each line. i tried below but it doesn't work sed -r "s/^(.{94})(.{51})/\ /" inputfile.txt > outputfile.txt can someone please help me... (3 Replies)
Discussion started by: Kevin Tivoli
3 Replies

6. UNIX for Dummies Questions & Answers

Bash: using SED, trying to replace some characters except first or last line

Hi, I require to replace 2 items: 1. replace start of all lines in a file with ' except the first line 2. replace end of all lines in a file with '||chr( except last line I am able to do the entire file using sed -e s/^/\'/g -e s/$/\'\|\|chr\(/g "$file" > newfile.txt but am not yet... (3 Replies)
Discussion started by: Chella15
3 Replies

7. Shell Programming and Scripting

Bash: using SED, trying to replace some characters except first or last line

Hi, I require to replace 2 items: 1. replace start of all lines in a file with ' except the first line 2. replace end of all lines in a file with '||chr( except last line I am able to do the entire file using sed -e s/^/\'/g -e s/$/\'\|\|chr\(/g "$file" > newfile.txt but am not yet able... (0 Replies)
Discussion started by: Chella15
0 Replies

8. Shell Programming and Scripting

Using sed to replace special characters

Hi everyone I have file1 contains: '7832' ' 8765 6543 I want a sed command that will format as: '7832' , '8765' , '6543' I tried sed -e s/\'//g -e 's/^*//;s/*$//' file1 > file2 sed -e :a -e '$!N; s/\n/ /; ta' file2 which gives: 7832 8765 6543 I need some help to continue with... (5 Replies)
Discussion started by: nimo
5 Replies

9. Shell Programming and Scripting

Sed replace characters not equal to an expression

Hi all, Suppose I have a file with the contents below, and I only want to print words %S_ then | sort -u. ------------------------------ The %S_MSG that starts with '%.*s' is too long. Maximum length is %d. The %S_MSG name '%.*s' contains more than the maximum number of prefixes. The... (5 Replies)
Discussion started by: poldo
5 Replies

10. Shell Programming and Scripting

how to replace control characters using sed?

How can I use sed to replace a ctrl character such as 'new line' (\0a) to something else? Or any other good command can do this job? Thanks, Hillxy (5 Replies)
Discussion started by: hillxy
5 Replies
Login or Register to Ask a Question