reset illustrator script added

这个提交包含在:
victor 2021-01-06 16:05:35 +03:30
父节点 5186ca53e7
当前提交 fb1f5331d1
共有 1 个文件被更改,包括 18 次插入0 次删除

18
scripts/resetIllustrator.sh 可执行文件
查看文件

@ -0,0 +1,18 @@
#! /usr/bin/env bash
source "sharedFuncs.sh"
function resetIllustrator() {
load_paths
show_message2 "reset illustrator..."
resetDIR="$SCR_PATH/IllustratorCC17/Data"
if [ -d "$resetDIR" ];then
show_message2 "reset dir found..."
rm -rf "$resetDIR" || error2 "illustrator error failed"
echo "illustrator reset successfully."
else
error2 "directory not exist"
fi
}
resetIllustrator