Command LIne Magic (CLIMagic)

Follow @climagic on Twitter or Mastodon.

Support climagic on Patreon and receive access to the CLImagic Supplement series

If you like watching video tutorials, I've made some that are available through the climagic youtube channel.

If you want to chat with us on IRC, check out the new channel on freenode: irc://irc.freenode.org#climagic

If you are learning Unix, then in the spirit of the climagic name, you should check out this ebook: Unix for Beginning Mages by Joe Topjian.

Latest Command

Date: 2021-06-28 14:53:56
Description: Combine curl's ability to authenticate with an HTTP stream with mpv's ability to play a mjpeg stream from a remote camera. Passing the credentials on stdin to curl to avoid them being in the proc table.

curl -s -K- http://192.168.0.99:8081/ <<<"--user httpuser:httppass" | mpv -

Documents