re: removing bash/gawk'isms from wineshelllink

2007-04-26 Thread Dan Kegel
Ben Taylor wrote: I'm still working on the script to make it more "sh" compatible, but I think I have a potential fix for the line that reads: for i in $(get_menu_entries "$1"); do and replace it with for i in `get_menu_entries "$1"`; do If you want to be really portable to

Re: removing bash/gawk'isms from wineshelllink

2007-04-26 Thread Vitaliy Margolen
Ben Taylor wrote: > I'm still working on the script to make it more "sh" compatible, > but I think I have a potential fix for the line that reads: > > for i in $(get_menu_entries "$1"); do > > and replace it with > > for i in `get_menu_entries "$1"`; do What is the problem wit