Sponsored Content
Full Discussion: ^m
Top Forums UNIX for Dummies Questions & Answers ^m Post 3220 by kbusch73 on Tuesday 26th of June 2001 09:01:24 PM
Old 06-26-2001
^m

HI, I am totally new here, but I think I have come to the right place. I am a Microsoft programmer who doesn't know squat about UNIX, but need to write some unix scripts on the double. I have a short script that I want to invoke from the command line. I have the file in which I wrote this:

cd ~/exe/dir1/dir2
programName arguments > outputFile

I invoke this file from the command line and I get an error at line 1 saying "/usr/me/exe/dir1/dir2^M" does not exist. I assumed that since I used notepad to create the file from my laptop that there was an end of line character that got transferred across OSs. So, I went to the machine and used nedit to create a new file, but got the same error. (REALLY trying to avoid vi until I have more time....) What is my problem?

Thanks in advance

KB
 
gets(n) 						       Tcl Built-In Commands							   gets(n)

__________________________________________________________________________________________________________________________________________________

NAME
gets - Read a line from a channel SYNOPSIS
gets channelId ?varName? _________________________________________________________________ DESCRIPTION
This command reads the next line from channelId, returns everything in the line up to (but not including) the end-of-line character(s), and discards the end-of-line character(s). ChannelId must be an identifier for an open channel such as the Tcl standard input channel (stdin), the return value from an invocation of open or socket, or the result of a channel creation command provided by a Tcl extension. The channel must have been opened for input. If varName is omitted the line is returned as the result of the command. If varName is specified then the line is placed in the variable by that name and the return value is a count of the number of characters returned. If end of file occurs while scanning for an end of line, the command returns whatever input is available up to the end of file. If chan- nelId is in nonblocking mode and there is not a full line of input available, the command returns an empty string and does not consume any input. If varName is specified and an empty string is returned in varName because of end-of-file or because of insufficient data in non- blocking mode, then the return count is -1. Note that if varName is not specified then the end-of-file and no-full-line-available cases can produce the same results as if there were an input line consisting only of the end-of-line character(s). The eof and fblocked commands can be used to distinguish these three cases. EXAMPLE
This example reads a file one line at a time and prints it out with the current line number attached to the start of each line. set chan [open "some.file.txt"] set lineNumber 0 while {[gets $chan line] >= 0} { puts "[incr lineNumber]: $line" } close $chan SEE ALSO
file(n), eof(n), fblocked(n), Tcl_StandardChannels(3) KEYWORDS
blocking, channel, end of file, end of line, line, nonblocking, read Tcl 7.5 gets(n)
All times are GMT -4. The time now is 08:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy