我不想改变屏幕截图的默认位置,也不想使用界面。我希望在某些特定情况下使用gnome-screenshot
保存到另一个文件夹。
我知道要保存到特定文件的-f
或--file
选项,但是有方法保存到目录/文件夹中吗?
我在Ubuntu 17.10。
发布于 2017-11-16 15:15:14
您也可以使用-f
选项指定目录。例如
gnome-screenshot -f ~/MyFolder/FileName.png
为了避免覆盖,可以将日期时间添加到文件名中,例如:
gnome-screenshot -f ~/MyFolder/Screenshot\ from\ $(date "+%Y-%m-%d--%H-%M-%S").png
https://askubuntu.com/questions/977083
复制相似问题