Run an interactive sesson using the -it flags
$ docker run -it busybox
Inside the docker container try various linux commands, but do NOT exit the container.
# pwd
# ls -l
# uptime
# echo hello world
-imakes the sessin interactive.-tallocates a pseudo TTY so we can actually see something.