http://qs1969.pair.com?node_id=202975


in reply to shebang: automagically obtaining

Just to be clear... Do you want to find the shebang line of your script, or do you want to automatically add the appropriate shebang line to a script that presumably doesn't have one?

--
IndyZ

Replies are listed 'Best First'.
Re: Re: shebang: automagically obtaining
by nutshell (Beadle) on Oct 05, 2002 at 02:45 UTC
    Trying to get the script to automagically detect it.

    This magical line would replace the #! thing.

    --nutshell

      I interpret this as meaning, "My script needs to generate it's own shebang line, i.e., it needs to self-modify after it has been loaded by the interpreter." If this is the case, then you are missing the point of the shebang line. It tells the system what interpreter to use when executing a file, whether it is a shell script, Perl script, or Ruby program. Because of this, the shebang must exist before the script is run. Otherwise, the system won't know what interpreter to use and will cough up the error that you saw when you tried BUU's suggestion.

      But, if you could tell us why you need to do something like this, we might be able to offer an alternative solution.

      --
      IndyZ

        "But, if you could tell us why you need to do something like this, we might be able to offer an alternative solution."
        No real reason - just would help when distributing scripts if people didn't have to worry about the shebang line.

        The only reason I asked was because I thought I saw it done before.

        Thanks anyway,
        --nutshell