Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: slightly offtopic about aeforum on apache...

From: joel:neely:fedex at: 5-Jul-2003 0:20

Hi, Charles, Charles wrote:
> I'm sorry, bang and shebang? English, please? > > ----- Original Message ----- > From: <[SunandaDH--aol--com]> >>You should have a shebang at the start of each CGI script: something
like:
>> >>#!/rebol/rebol -cs >>
From the common pronounciations of the two first punctuation characters: # = haSH ! = BANG #! = SH'BANG or SHeBANG On *nix-like systems, you can make a file executable by setting the execute bit(s) and placing a "shebang" line at the beginning which specifies what interpreter to run for the script, along with any desired command line options, as in (e.g.): #!/usr/bin/rebol -cs for REBOL, #!/usr/bin/perl -w for Perl, #!/usr/bin/ksh for Korn shell, etc. (your paths and mileage may vary). -jn-