[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference hydra::amiga_v1

Title:AMIGA NOTES
Notice:Join us in the *NEW* conference - HYDRA::AMIGA_V2
Moderator:HYDRA::MOORE
Created:Sat Apr 26 1986
Last Modified:Wed Feb 05 1992
Last Successful Update:Fri Jun 06 1997
Number of topics:5378
Total number of notes:38326

3730.0. "Execute script file help" by ELMST::VERMA (Virendra, MRO4-3/H10, DTN 297-5913) Mon Apr 30 1990 16:23

What is the "line continuation" character for the execute script file? I
would appreciate if some one could help me on that. I looked all over the
place and couldn't find it.

My blink command is getting bigger and bigger to accomodate all .o files.
I tried to use several lines witout any line-continuation character, doesn't
seem to work.
 
Thanks in advance.

T.RTitleUserPersonal
Name
DateLines
3730.1No real line continuationTLE::RMEYERSRandy MeyersMon Apr 30 1990 16:3724
Re: .0

>What is the "line continuation" character for the execute script file?

There isn't one, really.  A + followed by newline is sort of a line
continuation, but the command gets the embedded newline (but not the
plus sign) as part of the command.  Some programs might freak at this.

The primary use for the + continuation is to have RUN run several
commands in a different CLI:

	run cd sys: +
	dir

Gets you a directory listing of sys:.  Both the CD and DIR command
are executed in the same CLI process created by the RUN command.

>My blink command is getting bigger and bigger to accommodate all .o files.

There is a hard and fast limit of 254 characters in a CLI command.
You can not exceed that limit.

The solution to big blink command lines is blink "with" command
files.  Sorry.
3730.2HKFINN::MACDONALDVAXELN - Realtime Software PubsMon Apr 30 1990 17:234
    RUN WAIT UNTIL 18:00+
    RUN VLT
    
    This will run the VLT terminal program at 6 pm.