我可以用什么软件在设定的间隔内截图?我想每2秒左右拍一张截图。命令行和GUI都很好.
我更喜欢软件,也可以调整大小和压缩每个屏幕截图。
发布于 2011-06-28 16:25:38
安装scrot
,然后运行以下命令:
while true; do scrot & sleep 2; done
发布于 2011-06-28 22:43:12
watch -n2 scrot
或
while true; do scrot -d2; done
发布于 2011-09-13 14:28:14
while true; do import -window root /path/to/where/you/want/to/save/`date`.png; done
https://askubuntu.com/questions/50958
复制相似问题