Sponsored Content
Top Forums Shell Programming and Scripting Removing last character from each line of file Post 62664 by vgersh99 on Friday 18th of February 2005 10:58:25 AM
Old 02-18-2005
to strip ALL ^M-s:
tr -d '\015' < file

to strip all trailing ^M-s from all the files in the current directory:
Code:
#!/bin/ksh

find . -type f | while read file
do
   echo "stripping ^M from [${file}]..."
   ex - "${file}" <<EOF
%s/^M$//g
wq!
EOF
done;

^M - in 'vi' is CTRL-V followed by CTRL-M

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Removing character from list line (at the end)

Hi, I have file as shown below. abc, def, abc, xyz, I have to remove ',' from end of last line (xyz,). How can I do that with single command? Is it possible or I have to iterate through complete file to remove that? - Malay (2 Replies)
Discussion started by: malaymaru
2 Replies

2. Shell Programming and Scripting

removing new line character

I'm appending header and trailer record for a binary file using echo "$header" > filename cat oldfilename >> filename echo "$trailer" >> filename The echo is introducing newline character after header and trailer.Please let me know is there any possibility to get rid of newline character. (2 Replies)
Discussion started by: ammu
2 Replies

3. UNIX for Dummies Questions & Answers

removing a character and addending to end in each line in a file

HI i am having a file this (sys19:pnlfct:/pfact/temp>) cat temp_sand 1234567890 1234567890 1234567890 1234567890 I want to make this file as (sys19:pnlfct:/pfact/temp>) cat temp_sand 1456789023 1456789023 1456789023 1456789023 just take the 2nd and 3rd position and put it... (5 Replies)
Discussion started by: arunkumar_mca
5 Replies

4. Shell Programming and Scripting

How to concat line first and then removing the ^M character

hi Someone can give me some clue or script in writing the below requirement I am having 5 or 10 files of unix files which contain ^M charactes. First we have to find ^M character and concat the line where it has broken and then we have to remove the ^M character from the uxix... (11 Replies)
Discussion started by: vsantoshusa
11 Replies

5. Shell Programming and Scripting

Removing ^Z Character in a File

Hi, I am having a pipe (|) delimited file which is having ^Z character in the middle of the text.Could anyone please suggest me how to remove this ^Z Character from the file.I almost used all the ideas posted in this site but none of them worked in my case since tis ^Z character is not coming at... (4 Replies)
Discussion started by: phoenix86
4 Replies

6. Shell Programming and Scripting

Removing Special Character from File.

Hi, My file has this special character "^M" I would like to remove this characters. eg: abc,abc,^M i tried using sed but doesnt work. i used octal dump command to see special character it returns following: 015 \r Appreciate your reply. (6 Replies)
Discussion started by: pinnacle
6 Replies

7. HP-UX

How to remove new line character and append new line character in a file?

Hi Experts, I have data coming in 4 columns and there are new line characters \n in between the data. I need to remove the new line characters in the middle of the row and keep the \n character at the end of the line. File is comma (,) seperated. Eg: ID,Client ,SNo,Rank 37,Airtel \n... (8 Replies)
Discussion started by: sasikari
8 Replies

8. UNIX for Dummies Questions & Answers

Need help removing last character of every line if certain character

I need help removing the last character of every line if it is a certain character. For example I need to get rid of a % character if it is in the last position. Input: aaa% %bbb ccc d%dd% Output should be: aaa %bbb ccc d%dd I tried this but it gets rid of all of the % characters.... (5 Replies)
Discussion started by: raptor25
5 Replies

9. Shell Programming and Scripting

Removing first and last character of line

Hi all, Please help me to remove first and last character of each line in a file. Thanks, Baski (5 Replies)
Discussion started by: baskivs
5 Replies

10. Shell Programming and Scripting

Removing last character of a specific line from a file

Hello guys, I would need to remove the last character ")" of a specific line. This can be from any line. Your help is appreciated. Below is the line. HOSTNAME=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)) Please help. (6 Replies)
Discussion started by: sang8g
6 Replies
strip(1)						      General Commands Manual							  strip(1)

NAME
strip - strip symbol and line number information from an object file SYNOPSIS
filename ... DESCRIPTION
removes the symbol table and line number information from object files, including archives. Thereafter, no symbolic debugging access is available for that file; thus, this command is normally run only on production modules that have been debugged and tested. The effect is nearly identical to using the option of ld. Options The amount of information stripped from the symbol table can be controlled by using any of the following options: Strip line number information only; do not strip any symbol table information. Do not strip static or external symbol information. Note that the and options are synonymous because the symbol table contains only static and external symbols. Either option strips only symbolic debugging information and unloadable data. Reset the relocation indexes into the symbol table (SOM only). Obsolete for ELF files. This option allows to be run on relocatable files, in which case the effect is also to strip only symbolic debugging information and unloadable data. Print the version of the strip command on the standard error output. Print the usage menu. If there are any relocation entries in the object file and any symbol table information is to be stripped, complains and terminates without stripping filename unless the option is used. If is executed on an archive file (see ar(4)), the archive symbol table is removed. The archive symbol table must be restored by executing with its operator (see ar(1)) before the archive can be used by the command (se ld(1)). instructs the user with appropriate warning mes- sages when this situation arises. The purpose of this command is to reduce file storage overhead consumed by the object file. EXTERNAL INFLUENCES
Environment Variables The following internationalization variables affect the execution of Determines the locale category for native language, local customs and coded character set in the absence of and other environment variables. If is not specified or is set to the empty string, a default of (see lang(5)) is used instead of Determines the values for all locale categories and has precedence over and other environment variables. Determines the locale that should be used to affect the format and contents of diagnostic messages written to standard error. Determines the locale category for numeric formatting. Determines the locale category for character handling functions. Determines the location of message catalogues for the processing of If any internationalization variable contains an invalid setting, behaves as if all internationalization variables are set to See envi- ron(5). In addition, the following environment variable affects Specifies a directory for temporary files (see tmpnam(3S)). International Code Set Support Single- and multi-byte character code sets are supported. DIAGNOSTICS
name cannot be read. name is not an appropriate object file. name contains relocation entries and the option was not specified. Symbol table information cannot be stripped. EXAMPLES
Strip symbol table and debug information from the shared library in the current directory to reduce its size. Symbol information required to use the library is preserved: FILES
temporary files SEE ALSO
System Tools: ar(1) create archived libraries as(1) translate assembly code to machine code cc(1) invoke the HP-UX C compiler ld(1) invoke the link editor Miscellaneous: a.out(4) assembler, compiler, and linker output ar(4) archive format STANDARDS CONFORMANCE
strip(1)
All times are GMT -4. The time now is 02:33 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy