From 9b884a5be682e143edfd602f9ddc071bd6697a3f Mon Sep 17 00:00:00 2001 From: Diogo Pinela Date: Sun, 13 Oct 2019 14:58:34 +0100 Subject: [PATCH] screencapture: add page (#3390) --- pages/osx/screencapture.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages/osx/screencapture.md diff --git a/pages/osx/screencapture.md b/pages/osx/screencapture.md new file mode 100644 index 000000000..13f825a71 --- /dev/null +++ b/pages/osx/screencapture.md @@ -0,0 +1,27 @@ +# screencapture + +> Utility to take screenshots and screen recordings. + +- Take a screenshot and save it to a file: + +`screencapture {{path/to/file.png}}` + +- Take a screenshot including the mouse cursor: + +`screencapture -C {{path/to/file.png}}` + +- Take a screenshot and open it in Preview, instead of saving: + +`screencapture -P` + +- Take a screenshot of a selected rectangular area: + +`screencapture -i {{path/to/file.png}}` + +- Take a screenshot after a delay: + +`screencapture -T {{seconds}} {{path/to/file.png}}` + +- Make a screen recording and save it to a file: + +`screencapture -v {{path/to/file.mp4}}`