Re: strangeness about variable inside the shell

2003-06-04 Thread Paul D. Smith
%% "Huiseok Kim" <[EMAIL PROTECTED]> writes: hk> p {margin-top:0px;margin-bottom:0px;} it looks strange that the variable in the shell doesn't work with builtin function. following is one of the situation: Please don't post HTML. hk> list = foo/bar google deep/deeper/deepest hk> test:

strangeness about variable inside the shell

2003-06-04 Thread Huiseok Kim
it looks strange that the variable in the shell doesn't work with builtin function. following is one of the situation:   list = foo/bar google deep/deeper/deepest test:     for item in $(list); do \     echo $(notdir $$item); \     done result ?   foo/bar google deep/deeper/dee