Skip to content
Advertisement

Return the ls -l output in docker container

So I have a docker container running which has a couple of folder/files inside.

When I go inside the container I can see that they are:

hostmachine$> docker exec -it testContainer bash

testContainer@testContainer:~$ ls -l

JavaScript

My question is:

What script, how can I use it on my hostmachine that will:

1) Echo back (return) the following info from the container:

current -> /home/testContainer/herp-4.2.2-SNAPSHOT

2) And then taking it further, just echo back the last bit:

herp-4.2.2-SNAPSHOT

So essentially it could be like:

hostmachine$> ./getSnapshotName.sh

herp-4.2.2-SNAPSHOT

Advertisement

Answer

Just build it up in steps. First, no need to use -it and bash to run an interactive shell, just run the command directly:

JavaScript

Next, use readlink to save you from parsing the ls output:

JavaScript

Finally, run that through basename to strip out the directory parts:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement