Demonstrating your play ground
Sometimes you may want to share what you're doing in the terminal with others.
To do this, switch to the shell you want to display and use the following command:
# shell_name -i |& tee /tmp/show
For example:
# bash -i |& tee /tmp/show
Others can then view your terminal activities by typing:
$ tail -f /tmp/show
Comments
Post a Comment