Re: How to call a new bash function within a makefile

2005-11-13 Thread Paul D. Smith
ake syntax. They cannot contain shell functions. I mean, I guess you could do something like this: defineDoThis = function DoThis() { echo $0; } all: $(defineDoThis); DoThis "Test" but I doubt that's what you're looking for. -- -----

Re: BASH Bug???

2005-05-24 Thread Paul D. Smith
shells file on the Solaris system and add your instance of bash to it (on a new line). Only shells listed in that file can be used as login shells. -- ----------- Paul D. Smith <[EMAIL PROTECTED]> Find some

Re: How can I find the -c argument?

2005-04-15 Thread Paul D. Smith
%% Chet Ramey <[EMAIL PROTECTED]> writes: cr> Paul D. Smith wrote: >> This isn't a bug, actually. I'm wondering if there's any way to >> access the string provided with the -c option to the shell, from >> within the shell init files. cr>

How can I find the -c argument?

2005-04-15 Thread Paul D. Smith
within my ~/.bash_profile? I tried the obvious but it isn't in $@ and it's not sitting in stdin waiting for me. Is there any way to retrieve that string from within my shell setup? -- ------- Paul D. Smith <[EM