Sponsored Content
Full Discussion: Remove newlines
Top Forums UNIX for Dummies Questions & Answers Remove newlines Post 302890909 by wisecracker on Sunday 2nd of March 2014 09:24:14 AM
Old 03-02-2014
Quote:
To day night i implement this code..
WHAT!!!

Untested, unproven in _all_ situations and primitive?

Again I state with a loud voice this time:-
THIS WILL ONLY WORK WITH YOUR LINE NUMBERS 10 TO 19 WITH THE TEST DATA GIVEN!

Take heed!

Your code with minor corrections...
Code:
#!/bin/bash
# rm_newline.sh
# Use the data already given in my previous postings...
cat < /tmp/bunny
tr -d '\n' < /tmp/bunny > /tmp/NewFileName
echo ""
echo ""
cat < /tmp/NewFileName
echo ""
echo ""
mynewfile=""
newline=0
n="1"
# FIle bunny and variable bunny - fun eh!
read -d '' -r bunny < /tmp/NewFileName
while true
do
	if [ $newline -ge ${#bunny} ]
	then
		break
	fi
	if [ "${bunny:$newline:2}" = "0$n" ]
	then
		mynewfile=$mynewfile${bunny:$newline:1}$'\n'
	else
		mynewfile=$mynewfile${bunny:$newline:1}
	fi
	newline=$[ ( $newline + 1 ) ]
done
echo "$mynewfile" > /tmp/File
cat < /tmp/File

Results:-
Code:
Last login: Sun Mar  2 14:09:36 on ttys000
AMIGA:barrywalker~> chmod 755 bunny.sh
AMIGA:barrywalker~> ./bunny.sh
10,"Special Projects,bangaram",0,,0
10,"Statutory/ Internal Audit , MO reporting (incl Excel Spreadsheet uploadation)",	bangaram,0,,0
10,"Complience with SVCCL",	bangaram,	0,,	0
10,	"Release of incentives / commission to all channel partners.
",	bangaram,	0,,	0
10,"Timely processing of sales orders to channel partners",	bangaram,	0,,	0
10,"	Balance sheet Reviwe", bangaram,	0,,	0
10,"	Ensuring Critical Reconciliation on monthly basis. (IN-GL)",	bangaram,	0,,	0
10,	"Timely & accurate closure of Accounts.
",	bangaram,	0,,	0
11,"	Opex Spend on communication activites",	bangaram,	0,,	0
11,"	Opex Spend on communication activites",	bangaram	,0,,	0


10,"Special Projects,bangaram",0,,010,"Statutory/ Internal Audit , MO reporting (incl Excel Spreadsheet uploadation)",	bangaram,0,,010,"Complience with SVCCL",	bangaram,	0,,	010,	"Release of incentives / commission to all channel partners.",	bangaram,	0,,	010,"Timely processing of sales orders to channel partners",	bangaram,	0,,	010,"	Balance sheet Reviwe", bangaram,	0,,	010,"	Ensuring Critical Reconciliation on monthly basis. (IN-GL)",	bangaram,	0,,	010,	"Timely & accurate closure of Accounts.",	bangaram,	0,,	011,"	Opex Spend on communication activites",	bangaram,	0,,	011,"	Opex Spend on communication activites",bangaram	,0,,	0

10,"Special Projects,bangaram",0,,0
10,"Statutory/ Internal Audit , MO reporting (incl Excel Spreadsheet uploadation)",	bangaram,0,,0
10,"Complience with SVCCL",	bangaram,	0,,	0
10,	"Release of incentives / commission to all channel partners.",	bangaram,	0,,	0
10,"Timely processing of sales orders to channel partners",	bangaram,	0,,	0
10,"	Balance sheet Reviwe", bangaram,	0,,	0
10,"	Ensuring Critical Reconciliation on monthly basis. (IN-GL)",	bangaram,	0,,	0
10,	"Timely & accurate closure of Accounts.",	bangaram,	0,,	0
11,"	Opex Spend on communication activites",	bangaram,	0,,	0
11,"	Opex Spend on communication activites",	bangaram	,0,,	0
AMIGA:barrywalker~> _

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk - need to remove unwanted newlines on match

Context: I need to remove unwanted newlines from a data file listing books and associated data. Here is a sample listing ( line numbers included ): 1 360762| Skip-beat! 14 /| 9781421517544| nb | 2008.| Nakamura, Yoshiki.| NAKAMUR | Kyoko Mogami followed 2 her true love Sho to Tokyo to... (6 Replies)
Discussion started by: Bubnoff
6 Replies

2. Shell Programming and Scripting

Transpose with two newlines as delimiter

Hi Guys, I have data in a file as follows: a 1 2 3 b 4 5 6 a 6 7 8 a 4 7 9 b 6 8 5 c 0 8 7 So the number of rows which have data is variable (2 for the first group, one for the second group and three for the third group), but the delimiters between the... (10 Replies)
Discussion started by: npatwardhan
10 Replies

3. Shell Programming and Scripting

Remove improperly placed newlines

Hello, there. I have a file that's a horrible, horrible mess. (Basically, it's an export from a firewall config.) The people who generated the file didn't think that putting a newline in the middle of a hostname would ever be a problem. It is. Here's an example of the stuff in the file: ... (2 Replies)
Discussion started by: mikesimone
2 Replies

4. Shell Programming and Scripting

sed remove newlines and spaces

Hi all, i am getting count from oracle 11g by spooling it to a file. Now there are some newline characters and blank spaces i need to remove these. pl provide me a awk/sed solution. the spooled file is attached. i tried this.. but not getting req o/p (6 Replies)
Discussion started by: rishav
6 Replies

5. Shell Programming and Scripting

Delete newlines after every one space

Hi All, I have a file which looks like this: abc 3456 computer 3214 printer 0.9823 computer 3214 Can anyone please let me know how I can format my text like this? abc 3456 computer 3214 printer 0.9823 computer 3214 I know how to space to newlines using tr but don't know how to do... (4 Replies)
Discussion started by: shoaibjameel123
4 Replies

6. Shell Programming and Scripting

removing newlines after a certain word.

Hello! This is my first post here. I have a file with text like: A</title> B C</title> D I need to format it to: AB CD I am trying to use sed: sed 's/<//title>\n/ /g' file > newfile to delete </title> and the newline character, but the file is unchanged because there are... (3 Replies)
Discussion started by: DaytonCPS
3 Replies

7. Shell Programming and Scripting

Need help with eliminating newlines with Perl

Good morning, I need some help with getting rid of newlines with the output from a MYSQL query and putting the information into the right format that I need. Here is the script as it is today: #!/usr/bin/perl my $uda = system("/opt/incontrol/mysql/bin/mysql -u root -ppassword... (2 Replies)
Discussion started by: brianjb
2 Replies

8. UNIX for Dummies Questions & Answers

Using find with awk to remove newlines

I want to list all html files present in a directory tree, the remove the newline and get one string with a space between files find /home/chrisd/Desktop/seg/geohtml/ -name '*.html' | awk BEGIN{FS=\r} '{print}' ---------- Post updated at 06:47 PM ---------- Previous update was at 06:25 PM... (5 Replies)
Discussion started by: kristinu
5 Replies

9. UNIX for Beginners Questions & Answers

Remove newlines and carriage return from a csv file using UNIX

I need to remove new lines and carriage returns from csv file. Is there anything other than sed and gwak by which we could achieve this ? Any suggestions ? (3 Replies)
Discussion started by: A_Gaddale
3 Replies

10. Shell Programming and Scripting

UNIX file with Newlines

Hi Friends, I have a data file with new lines. How to remove the newlines and should be showed in one line. I tried using the command tr -d '\n' filename sed 's/\n//g' file name Ex: 1 abc hyd is actual record but in our scenario showing it as 1 abc hydthis record should be like... (5 Replies)
Discussion started by: victory
5 Replies
Tcl_StackChannel(3)					      Tcl Library Procedures					       Tcl_StackChannel(3)

__________________________________________________________________________________________________________________________________________________

NAME
Tcl_StackChannel, Tcl_UnstackChannel, Tcl_GetStackedChannel, Tcl_GetTopChannel - manipulate stacked I/O channels SYNOPSIS
#include <tcl.h> Tcl_Channel Tcl_StackChannel(interp, typePtr, clientData, mask, channel) int Tcl_UnstackChannel(interp, channel) Tcl_Channel Tcl_GetStackedChannel(channel) Tcl_Channel Tcl_GetTopChannel(channel) ARGUMENTS
Tcl_Interp *interp (in) Interpreter for error reporting. Tcl_ChannelType *typePtr (in) The new channel I/O procedures to use for channel. ClientData clientData (in) Arbitrary one-word value to pass to channel I/O procedures. int mask (in) Conditions under which channel will be used: OR-ed combination of TCL_READABLE, TCL_WRITABLE and TCL_EXCEPTION. This can be a subset of the operations currently allowed on channel. Tcl_Channel channel (in) An existing Tcl channel such as returned by Tcl_CreateChannel. _________________________________________________________________ DESCRIPTION
These functions are for use by extensions that add processing layers to Tcl I/O channels. Examples include compression and encryption mod- ules. These functions transparently stack and unstack a new channel on top of an existing one. Any number of channels can be stacked together. The implementation of the Tcl channel code was rewritten in 8.3.2 to correct some problems with the previous implementation with regard to stacked channels. Anyone using stacked channels or creating stacked channel drivers should update to the new TCL_CHANNEL_VERSION_2 Tcl_ChannelType structure. See Tcl_CreateChannel for details. Tcl_StackChannel stacks a new channel on an existing channel with the same name that was registered for channel by Tcl_RegisterChannel. Tcl_StackChannel works by creating a new channel structure and placing itself on top of the channel stack. EOL translation, encoding and buffering options are shared between all channels in the stack. The hidden channel does no buffering, newline translations, or character set encoding. Instead, the buffering, newline translations, and encoding functions all remain at the top of the channel stack. A pointer to the new top channel structure is returned. If an error occurs when stacking the channel, NULL is returned instead. The mask parameter specifies the operations that are allowed on the new channel. These can be a subset of the operations allowed on the original channel. For example, a read-write channel may become read-only after the Tcl_StackChannel call. Closing a channel closes the channels stacked below it. The close of stacked channels is executed in a way that allows buffered data to be properly flushed. Tcl_UnstackChannel reverses the process. The old channel is associated with the channel name, and the processing module added by Tcl_StackChannel is destroyed. If there is no old channel, then Tcl_UnstackChannel is equivalent to Tcl_Close. If an error occurs unstacking the channel, TCL_ERROR is returned, otherwise TCL_OK is returned. Tcl_GetTopChannel returns the top channel in the stack of channels the supplied channel is part of. Tcl_GetStackedChannel returns the channel in the stack of channels which is just below the supplied channel. SEE ALSO
Notifier(3), Tcl_CreateChannel(3), Tcl_OpenFileChannel(3), vwait(n). KEYWORDS
channel, compression Tcl 8.3 Tcl_StackChannel(3)
All times are GMT -4. The time now is 01:57 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy