8:47 PM SED command for filtering and transforming texts of a file using regular expression |
sed - stream editor for filtering and transforming text FORMAT DESCRIPTION Some useful parameters: -i[SUFFIX], --in-place[=SUFFIX] edit files in place (makes backup if suffix supplied). So if the input file is abc.txt, a backup file will be created as abc.txtSUFFIX add the contents of script-file to the commands to be executed. This file contains the regular exp and sunstitution word. used for SED Eg. Suppose we have file abc.txt like this: /home/user1:> cat abc.txt I want to find and replace "old" by "new". So I will use below command. somesed.sed is containing: :/home/user1:> cat somesed.sed So above command will use the somesed.sed file as script file and process the input file abc.txt and later will create a backup file as abc.txt.201404100831 . See the result: /home/user1:> sed -f somesed.sed -i.201404100831 abc.txt The backup file: |
|
Related blogs
You may also like to see:
[2014-03-13] | [Open System-Linux] |
crontab: A command in linux to automatically start/repeat a process at certian time and interval |
[2014-03-03] | [Open System-Linux] |
Working with VI Editor: Basic and Advanced |
[2014-12-16] | [Open System-Linux] |
CUT command in Linux : cut the file vertically |
[2014-10-26] | [Open System-Linux] |
XMLLINT command in linux : a validating XML parser |
[2014-08-31] | [Open System-Linux] |
20 command line tools to check load and performance of a Linux System |
Total comments: 0 | |