আপনি যা চেয়েছিলেন ঠিক তার জন্য এখানে কিছু অ্যাপ্লস্ক্রিপ্ট দেওয়া আছে, অটোমেটরের সাথে মিলিত হতে পারে বা কমান্ড লাইন প্রোগ্রামের ওসাস্ক্রিপ্টে খাওয়ানো যেতে পারে:
osascript << 'END'
{applescript here}
END
আপনি এটিকে আপনার ~ / .Bash প্রোফাইলে একটি কমান্ডের জন্য একটি উপন্যাস হিসাবে যুক্ত করতে পারেন, সুতরাং আপনাকে যা করতে হবে তা হ'ল ডাউনসাইজ ওরফে নামটি প্রবেশ করানো হবে এবং এটি পপ আপ হয়ে যাবে, আপনি কোন ফাইলটি আকার পরিবর্তন করতে চান তা জিজ্ঞাসা করুন এবং এটি করে বাকি স্বয়ংক্রিয়ভাবে।
alias downsize="osascript << 'END'
{applescript here}
END"
Applescript:
tell application "Preview"
activate
try
open (choose file with prompt "Pick file to modify")
on error
display dialog "Invallid selection!"
return 1
end try
end tell
tell application "System Events" to tell process "Preview"
set frontmost to true
click (menu item 1 where its title starts with "Adjust Size") of menu of menu bar item "Tools" of menu bar 1
tell pop up button 1 of group 1 of sheet 1 of window 1
click
tell menu 1
click menu item "percent"
end tell
end tell
set value of text field 1 of group 1 of sheet 1 of window 1 to "50"
set value of text field 2 of group 1 of sheet 1 of window 1 to "50"
set value of text field 3 of group 1 of sheet 1 of window 1 to "72"
click button "OK" of sheet 1 of window 1
click (menu item 1 where its title starts with "Save") of menu of menu bar item "File" of menu bar 1
end tell
ignoring application responses
tell application "Preview" to quit
end ignoring
আশাকরি এটা সাহায্য করবে!