2017-05-21 29 views
0

폴더의 '축소판. *'파일을 아이콘으로 폴더에 자동으로 적용하는 서비스를 만들려고합니다. 여기에 this answer을 사용하고 있지만 일부 수정이 이루어졌습니다.Automator Service - 폴더의 축소판 파일을 찾고 적용하십시오.

for 루프로 감싸었지만이 문제를 해결하기 위해 'icon ='행을 수정하는 데 문제가 있습니다.

for f in "[email protected]" 
do 
# Sets an icon on file or directory 
# Usage setIcon.sh iconimage.jpg /path/to/[file|folder] 
set iconSource to do shell script "find $f -name thumbnail*" 
set iconDestination to "$f" 

icon="/tmp" & $iconSource <----------------------------------------------- 
rsrc=/tmp/icon.rsrc 

# Create icon from the iconSource 
cp $iconSource $icon 

# Add icon to image file, meaning use itself as the icon 
sips -i $icon 

# Take that icon and put it into a rsrc file 
DeRez -only icns $icon > $rsrc 

# Apply the rsrc file to 
SetFile -a C $iconDestination 

if [ -f $iconDestination ]; then 
    # Destination is a file 
    Rez -append $rsrc -o $iconDestination 
elif [ -d $iconDestination ]; then 
    # Destination is a directory 
    # Create the magical Icon\r file 
    touch $iconDestination/$'Icon\r' 
    Rez -append $rsrc -o $iconDestination/Icon? 
    SetFile -a V $iconDestination/Icon? 
fi 

rm $rsrc $icon 
done 

답변

0

나는 문제가 & 믿습니다. 하고 아이콘 =을 설정하려면 애플 스크립트,하지 쉘 스크립트에서이 시도되도록 :

icon="/tmp"$iconSource 

또는 $ iconSource이 공간에서 \를 포함하지 않는 경우 다음이 시도 :

icon="/tmp$iconSource" 

을 BTW $ iconSource가/

으로 시작하는지 확인하십시오.

희망이 있습니다. :)