When I do wget https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz
and then tar xvzf install-tl-unx.tar.gz
the files get extracted (right now) to install-tl-20240521
. On the CLI it's not a problem - I can just do cd install-tl-[tab]
but if I'm trying to do it in a Dockerfile I can't do that. I thought maybe cd install-tl-*
might do the trick but when I do that I get this error:
bash: cd: too many arguments
So if I could extract the tarball contents to a directory of my choosing vs the one in the tarball itself that'd help. Or if I could do a cd
with wildcards somehow that'd help too.
Any ideas?
cd install-tl-*
withecho cd install-tl-*
to see more details.