Nope it wont work.
__
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
http://promotions.yahoo.com/new_mail
___
ilugd mailinglist -- [EMAIL PROTECTED]
http://frodo.hserus.net/mailman/l
u could use this
./myscript.sh anyfilename > anyfilename
and in the script u could get the "anyfilename" by using $1
and similarly for other arguments passed ,u could use $2, $3 and so on
On Wed, 1 Sep 2004 03:42:19 -0700 (PDT), amitflu <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I have been writi
[Please use ilug-dev for programming questions. CCing to it. All future
replies will only go there.]
On Wednesday 01 Sep 2004 4:12 pm, amitflu wrote:
>
> I need to use the name of the Standard output
> file provided by the user in a shell script.
> for example:-
> ./myscript.sh > amit.txt
> so I
Hi all,
I have been writing a long script for last 7
days.I am stuck with a small problem.
I need to use the name of the Standard output
file provided by the user in a shell script.
for example:-
./myscript.sh > amit.txt
so I need to use "amit.txt" somewhere into my
shell scipt.
So please tell me