Forum Discussion
How do I snip and capture a screenshot on my mac?
As i know. Using Terminal's screencapture command is actually the easiest way to capture a screenshot on Mac if you prefer typing over keyboard shortcuts. It's built into macOS, completely free, and gives you precise control over what gets captured.
Step 1: Open Terminal
Press Command + Space, type "Terminal", and press Enter. Or find it in Applications > Utilities > Terminal.
Step 2: Basic Full-Screen Capture
Type this command and press Enter:
screencapture ~/Desktop/shot.png
This captures your entire screen and saves it as shot.png on your Desktop. The ~/Desktop/ part tells it where to save the file.
Step 3: Interactive Selection (Snip)
To snip just part of the screen:
screencapture -i ~/Desktop/snip.png
Your cursor becomes a crosshair. Drag to select an area, or press Space to switch to window-capture mode. Press Esc to cancel.
Step 4: Copy to Clipboard Instead
If you don't want a file and just want to paste somewhere:
screencapture -c
This is the easiest way to capture a screenshot on Mac for quick sharing — no file cleanup needed.
Step 5: Timed Capture
For capturing menus or hover states:
screencapture -T 5 ~/Desktop/shot.png
Waits 5 seconds before capturing, giving you time to set up the screen.
Step 6: Window Capture Without Shadow
screencapture -i -o -w ~/Desktop/window.png
The -w flag restricts to windows, and -o removes the drop shadow.
Once you memorize a few flags, this becomes the easiest way to capture a screenshot on Mac for anyone comfortable with Terminal. Run screencapture --help to see every option.