[ 애플 스크립트 생성 방법 ]
- Launchpad -> Other -> Script 편집기 실행


- 아래의 스크립트 내용 복사 후 저장
set the clipboard to ""
set appname to "SecurID"
set thePin to "1111"
--set thePin2 to RsaTokenPin()

activate application appname

tell application appname
     activate
     tell application "System Events"
         keystroke thePin -- type the pin number
         delay 0.3 -- wait for token appear
         key code 36 -- return key
         delay 0.3 -- wait for token appear
         key code 48 -- press tab
         key code 49 -- space (to hit the copy button)
     end tell
end tell

delay 0.1 -- wait 

on RsaTokenPin()
     return (do shell script "security -q find-generic-password -gl rsatoken 2>&1  | egrep '^password' | awk -F\\\" '{print $2}'")
end RsaTokenPin

-- 기존 파일 삭제 하고, Clipboard에 있는 정보로 파일 신규 생성
do shell script "rm -rf /Applications/MAMP/htdocs/tksvpn/token.txt; pbpaste >> /Applications/MAMP/htdocs/tksvpn/token.txt"

quit application appname




+ Recent posts