In this article of sed series, we will see the examples of how to remove or delete characters from a file. The syntax of sed command replacement is:
$ sed 's/find/replace/' fileThis sed command finds the pattern and replaces with another pattern. When the replace is left empty, the pattern/element found gets deleted.
Let us consider a sample file as below:
$ cat file Linux Solaris Ubuntu Fedora RedHat1. To remove a specific character, say 'a'
$ sed 's/a//' file Linux Solris Ubuntu Fedor RedHtThis will remove the first occurence of 'a' in every line of the file. To remove all occurences of 'a' in every line,
$ sed 's/a//g' file2. To remove 1st character in every line:
$ sed 's/^.//' file inux olaris buntu edora edHat.(dot) tries to match a single character. The ^ tries to match a pattern(any character) in the beginning of the line. Another way to write the same:
$ sed 's/.//' fileThis tells to replace a character with nothing. Since by default, sed starts from beginning, it replaces only the 1st character since 'g' is not passed.
3. To remove last character of every line :
$ sed 's/.$//' file Linu Solari Ubunt Fedor RedHaThe $ tries to match a pattern in the end of the line.
4. To remove the 1st and last character of every line in the same command:
$ sed 's/.//;s/.$//' file inu olari bunt edor edHaTwo commands can be given together with a semi-colon separated in between.
5. To remove first character only if it is a specific character:
$ sed 's/^F//' file Linux Solaris Ubuntu edora RedHatThis removes the 1st character only if it is 'F'.
6. To remove last character only if it is a specific character:
$ sed 's/x$//' file Linu Solaris Ubuntu Fedora RedHatThis removed the last character only if it s 'x'.
7. To remove 1st 3 characters of every line:
$ sed 's/...//' file ux aris ntu ora HatA single dot(.) removes 1st character, 3 dots remove 1st three characters.
8. To remove 1st n characters of every line:
$ sed -r 's/.{4}//' file
x
ris
tu
ra
at
.{n} -> matches any character n times, and hence the above expression matches 4 characters and deletes it.9. To remove last n characters of every line:
$ sed -r 's/.{3}$//' file
Li
Sola
Ubu
Fed
Red
10. To remove everything except the 1st n characters in every line:
$ sed -r 's/(.{3}).*/\1/' file
Lin
Sol
Ubu
Fed
Red
.* -> matches any number of characters, and the first 3 characters matched are grouped using parantheses. In the replacement, by having \1 only the group is retained, leaving out the remaining part.11. To remove everything except the last n characters in a file:
$ sed -r 's/.*(.{3})/\1/' file
nux
ris
ntu
ora
Hat
Same as last example, except that from the end.12. To remove multiple characters present in a file:
$ sed 's/[aoe]//g' file Linux Slris Ubuntu Fdr RdHtTo delete multiple characters, [] is used by specifying the characters to be removed. This will remove all occurences of the characters a, o and e.
13. To remove a pattern :
$ sed 's/lari//g' file Linux Sos Ubuntu Fedora RedHatNot just a character, even a pattern can be removed. Here, 'lari' got removed from 'Solaris'.
14. To delete only nth occurrence of a character in every line:
$ sed 's/u//2' file Linux Solaris Ubunt Fedora RedHatBy default, sed performs an activity only on the 1st occurence. If n is specifed, sed performs only on the nth occurence of the pattern. The 2nd 'u' of 'Ubuntu' got deleted.
15. To delete everything in a line followed by a character:
$ sed 's/a.*//' file Linux Sol Ubuntu Fedor RedH
16. To remove all digits present in every line of a file:
$ sed 's/[0-9]//g' file[0-9] stands for all characters between 0 to 9 meaning all digits, and hence all digits get removed.
17. To remove all lower case alphabets present in every line:
$ sed 's/[a-z]//g' file L S U F RH[a-z] represents lower case alphabets range and hence all lower-case characters get removed.
18. To remove everything other than the lower case alphabets:
$ sed 's/[^a-z]//g' file inux olaris buntu edora edat^ inside square brackets negates the condition. Here, all characters except lower case alphabets get removed.
19. To remove all alpha-numeric characters present in every line:
$ sed 's/[a-zA-Z0-9]//g' fileAll alpha-numeric characters get removed.
20. To remove a character irrespective of the case:
$ sed 's/[uU]//g' file Linx Solaris bnt Fedora RedHatBy specifying both the lower and upper case character in brackets is equivalent to removing a character irrespective of the case.
It's good.
ReplyDeleteHow to remove / from a text file.
Use a character as a delimiter which is not there in your text file like @.Example : sed 's@/@@g' file.txt
DeleteUse an escape sequence \. So to replace / with @ sed 's/\//@/g' file.txt.
DeleteTo remove 1st n characters of every line we use :
ReplyDelete$ sed -r 's/.{4}//' file
I want to use this command with "n" stored in a variable $var
$ sed -r 's/.{$var}//' file doesn't work
Double quotes instead of single whenever variable is present:
Deletesed -r "s/.{$n}//" file
Hello,
ReplyDeleteI want to remove the third, fourth and fifth character of each line, how to do it ?
Thank you in advance.
Perl is a better candidate for this one:
Deleteperl -plne 'substr($_,2,3,"");' file
Hello,
ReplyDeleteI want to print from & to & from "asdf&12345&qwer"
Thanks in advance
Sweet article, helped me a lot, thank you.
ReplyDeleteI have a very large file and many lines don't have a
ReplyDeleteat the end of the previous line. I need to identify only those lines that don't have a
and a blank line prior to that line, without affecting lines that already have the
. Ex:
1:25 some text
1:26 some text
I need:
1:25 some text
1:26 some text, etc.
The below line worked for other issues, but I am a bit confused as to the syntax for the above task:
sed -i[test.bk] 's/[[:space:]]\([[:digit:]]\:[[:digit:]]\)/G\1/g' test.php
Thanks in advance.
i have mutliple files and I want to remove say the first 8 characters of each files
ReplyDeleteHi,
ReplyDeleteI wan to insert a char in line x before a special char, and delete a space to hold the line length.
eg line 12
befor 123%__123
after 123Z%_123 (so I inserted one char before% and I removed/deleted 1 char after %
thx
Hi i have smb.conf file in that i have ;[homes]. i need to replace with [homes].
ReplyDeleteMeans i need to remove only ; at the beginning of that line. Kindly help me.