我想创建一个automator服务,将所选Finder文件的修改日期更改为当前日期。我从哪里开始?
答案 0 :(得分:1)
创建Automator服务:
在“ Finder ”中将弹出窗口设置为“文件或文件夹”
添加“运行Shell脚本”操作,将弹出窗口设置为“ / bin / bash ”和“作为参数”。< / p>
将此脚本放入操作中:
d=$(date "+%Y%m%d%H%M.%S") ## the formatted current date
touch -t $d "$@" ## change the file's modification date
保存工作流程,这就是全部。