4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Automator + Run Shell Scriptでフォルダ・ファイルを日付付きでZIP圧縮

Posted at

Create a workflow document and add "Run Shell Script" action from the left side pane.

Untitled-2.jpg

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.

Untitled.jpg

4
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?