আমি শেষ পর্যন্ত একটি বাশ ফাংশন রাখতে চাই to-clipboard
যা ফাইলের পথ পায় এবং ক্লিপবোর্ডে ফাইলগুলি অনুলিপি করে। সহায়ক হিসাবে অন্য স্ক্রিপ্টিং ভাষা ব্যবহার করা ঠিক আছে। আমার কাছে বর্তমানে একটি একক ফাইল অনুলিপি করার জন্য রয়েছে:
file-to-clipboard() {
osascript \
-e 'on run args' \
-e 'set the clipboard to POSIX file (first item of args)' \
-e end \
"$@"
}
এই আপেলসক্রিপ্টটি রয়েছে যা অনুমিতভাবে একাধিক ফাইলগুলি অনুলিপি করতে পারে তবে আমি এটি মোটেও পছন্দ করি না:
set f to {(POSIX file "/path/to/a/folder/a.png"), (POSIX file "/path/to/another/folder/b.png")}
tell application "Finder"
try -- to delete any old temp folder
delete folder "AS_mailCopy" of (path to temporary items)
end try
set tmp to make new folder at (path to temporary items) with properties {name:"AS_mailCopy"}
duplicate f to tmp
select files of tmp
activate
tell application "System Events" to keystroke "c" using command down
delete tmp
end tell
সম্পর্কিত প্রশ্ন:
অ্যাপ্লিক্রিপ্ট ব্যবহার করে ক্লিপবোর্ডে ফাইলগুলি অনুলিপি করা হচ্ছে
pbcopy
?