我写了一个bash脚本:
#!/bin/bash
echo "Enter a file name"
read filename
import -window root $HOME/Desktop/$filename.png
我希望此脚本可以拍摄屏幕截图并使用M桌面上的给定文件名保存图像....
问题:我的Ubuntu终端正在给出错误。导入:找不到命令
我将猜测这是来自ImageMagick的"导入":
sudo apt-get安装imagemagick
尝试此
while true; do scrot -d 900 'DEMO%d-%H:%M:%S.png' -e 'mv $f /home/'; done