回答:
screencapture -T 5 /tmp/screencapture.png # 5 second delay
screencapture -T 5 -cC # -c copies to clipboard, -C includes a cursor
screencapture -T 5 -ic # -i (interactive mode) is like shift-command-4
また、次のような関数も使用します。
screencaps() {
while :; do
screencapture -C ~/Desktop/$(date +%y%m%d%H%M%S).png
sleep ${1-1}
done
}