Skip to content

Creates screenshots based on terminal command output

License

Notifications You must be signed in to change notification settings

homeport/termshot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

termshot

License Go Report Card Tests Codecov Go Reference Release

Generate beautiful screenshots of your terminal, from your terminal.

termshot --show-cmd -- lolcat -f <(figlet -f big foobar)

This command generates this screenshot:

example

Installation

To install with Homebrew on macOS or Linux:

brew install homeport/tap/termshot

See Releases for pre-compiled binaries for Darwin and Linux.

Usage

This tool reads the console output and renders an output image that resembles a user interface window. It's inspired by some other web-based tools like carbon.now.sh, and codekeep.io/screenshot. Unlike those tools, termshot does not blindly apply syntax highlighting to some provided text; instead it reads the ANSI escape codes ("rich text") logged by most command-line tools and uses it to generate a high-fidelity "screenshot" of your terminal output.

Like time, watch, or perf, just prefix the command you want to screenshot with termshot -- .

termshot -- ls -a

This will generate an image file called out.png in the current directory.

basic termshot

In some cases, if your target command contains pipes—there may still be ambiguity, even with --. In these cases, wrap your command in double quotes.

termshot -- "ls -l | grep go"

termshot with pipes

--show-cmd/-c

Include the target command in the screenshot.

termshot --show-cmd -- "ls -a"
termshot --c -- "ls -a"

termshot that shows command

--edit/-e

Edit the output before generating the screenshot. This will open the rich text output in the editor configured in $EDITOR, using vi as a fallback. Use this flag to remove unwanted or sensitive output.

termshot --edit -- "ls -a"
termshot -e -- "ls -a"

--filename/-f

Specify a path where the screenshot should be generated. This can be an absolute path or a relative path; relative paths will be resolved relative to the current working directory.

termshot -- "ls -a" # defaults to <cwd>/out.png
termshot --filename my-image.png -- "ls -a"
termshot --filename screenshots/my-image.png -- "ls -a"
termshot --filename /Desktop/my-image.png -- "ls -a"

Defaults to out.png.

--version/-v

Print the version of termshot installed.

$ termshot --version
termshot version 0.2.5

out

Multiple commands

In order to work, termshot uses a pseudo terminal for the command to be executed. For advanced use cases, you can invoke a fully interactive shell, run several commands, and capture the entire output. The screenshot will be created once you terminate the shell.

termshot /bin/zsh

Please note: This project is work in progress. Although a lot of the ANSI sequences can be parsed, there are definitely commands in existence that create output that cannot be parsed correctly, yet. Also, commands that reset the cursor position are known to create issues.