Automator+Run Shell Script에서 날짜별로 폴더 파일 압축
Create a workflow document and add "Run Shell Script" action from the left side pane.
Copy and past the code below.
while read file; do
dir=`dirname "$file"`
file_src=`basename "$file"`
delimiter='_'
timestamp=`date +%Y%m%d`-`date +%H%M%S`
file_dst=$file_src$delimiter$timestamp
/usr/local/bin/terminal-notifier -title "Archiver" -message "Start archiving "$file_src"."
cd $dir
cp -rfp ./$file_src ./$file_dst
find ./$file_dst -name '*.DS_Store' -type f -delete
zip -r9 $file_dst ./$file_dst
rm -rf ./$file_dst
/usr/local/bin/terminal-notifier -title "Archiver" -message $file_src" is now archived as "$file_dst"." -sound Glass
done
Activate the service from System Prefernces > Keyboard > Keyboard Shortcuts > Service Menu.
Reference
이 문제에 관하여(Automator+Run Shell Script에서 날짜별로 폴더 파일 압축), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kojirof/items/21cff5d05aa26b63c7c5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)