> Date: Tue, 12 Feb 2013 08:53:37 -0600
> From: Tim Daneliuk <tun...@tundraware.com>
> To: FreeBSD Mailing List <freebsd-questions@freebsd.org>
> Subject: Was I Sourced?
>
> Is there a way for script to determine whether is was sourced
> or forked off as a subprocess when it was invoked?
>
> I have a script that needs to be sourced to work properly and
> I want to warn the luser if they exec or subshell it instead.

a 'sourced' script does -not- honor a shebag line.
you can exploit that.

The executable script /usr/local/bin/source_only;
   #!/bin/sh
   echo  Error: this script must be sourced

Your script:
   #!/usr/local/bin/source_only

   {cmd}
   {cmd}
   {cmd}
   {cmd}
   {cmd}
   {cmd}
   ...
   ...

Trying to do it totally self-contained is not easy.


_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Reply via email to