On Thu, Feb 03, 2022 at 04:29:39PM -0500, Marek Polacek wrote: > On Thu, Feb 03, 2022 at 10:13:36PM +0100, Martin Liška wrote: > > On 2/3/22 19:44, Andreas Schwab wrote: > > > On Feb 03 2022, Martin Liška wrote: > > > > > > > +cd $LIB > > > > +echo "$all_dirs" | xargs mkdir -p > > > > +cd .. > > > > + > > > > > > $LIB always contains slashes. > > > > > > > And what is the problem? You're too brief.. > > I guess his point is that if you do > cd a/b/c/ > then > cd .. > will not get you back to where you started. Perhaps you could use > pushd/popd instead.
Or a subshell. Jakub