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
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