जवाबों:
यहां एक ओपन टर्मिनल है AppleScript जिसे आप इसके बजाय iTerm को कॉल करने के लिए संशोधित करने में सक्षम होना चाहिए। यह MacOSXHints पोस्ट सहायक के रूप में अच्छी तरह से होना चाहिए।
(मैं अपने मैक पर नहीं हूं अन्यथा मैं इसका परीक्षण करूंगा।)
मेरे लिए यह एपस्क्रिप्ट काम करता है:
-- script was opened by click in toolbar
on run
tell application "Finder"
try
set currFolder to (folder of the front window as string)
on error
set currFolder to (path to desktop folder as string)
end try
end tell
CD_to(currFolder, false)
end run
-- script run by draging file/folder to icon
on open (theList)
set newWindow to false
repeat with thePath in theList
set thePath to thePath as string
if not (thePath ends with ":") then
set x to the offset of ":" in (the reverse of every character of thePath) as string
set thePath to (characters 1 thru -(x) of thePath) as string
end if
CD_to(thePath, newWindow)
set newWindow to true -- create window for any other files/folders
end repeat
return
end open
-- cd to the desired directory in iterm
on CD_to(theDir, newWindow)
set theDir to quoted form of POSIX path of theDir as string
tell application "iTerm"
activate
delay 1
-- talk to the first terminal
try
set myterm to the first terminal
on error
set myterm to (make new terminal)
end try
tell myterm
try
-- launch a default shell in a new tab in the same terminal
launch session "Default Session"
on error
display dialog "There was an error creating a new tab in iTerm." buttons {"OK"}
end try
tell the last session
try
-- cd to the finder window
write text "cd " & theDir
on error
display dialog "There was an error cding to the finder window." buttons {"OK"}
end try
end tell
end tell
end tell
end CD_to
इस पृष्ठ पर अन्य उत्तरों का उपयोग करके मैंने एक ऐप बनाया है जिसे खोजक कार्य पट्टी में खींचा जा सकता है।
आप इसे यहां से डाउनलोड कर सकते हैं: https://github.com/rc1/iTermTo
यह संस्करण 3.1.0 के रूप में iTerm2 में बनाया गया है।
कार्यक्षमता का उपयोग करने के लिए:
फाइंडर में एक फ़ोल्डर पर क्लिक करें -> सेवाएं -> नई iTerm2 विंडो यहां
नोट: Services
सबमेनू राइट-क्लिक मेनू के बहुत नीचे है।
संदर्भ
इस लिंक पर क्लिक करें पुराने संस्करण दिखाएं , फिर iTerm2 3.1.0 के तहत शो चेंगलॉग पर क्लिक करें और सेवाओं के लिए देखें , आपको यह मिलेगा:
खोजक सेवाओं के लिए समर्थन जोड़ें। आप खोजकर्ता को उस स्थान पर iTerm2 लॉन्च करने के लिए राइट क्लिक कर सकते हैं।
टर्मिनल (या iTerm, X11) में वर्तमान निर्देशिका को खोलने के लिए https://github.com/jbtule/cdto "खोजक टूलबार ऐप cdto
पर होस्ट की गई परियोजना पर एक नज़र डालें । इस ऐप को डिज़ाइन किया गया है (इसके आइकन सहित)। खोजक विंडो का टूलबार। "
पूर्णता के लिए, इस प्रश्न को खोजने से पहले कि मेरे लिए क्या काम किया गया था:
Applescript Editor-> File-> Export-> File Format = .app
।.app
खोजक के टूलबार पर खींचें और गिराएं।यह एक खोजक टूलबार बटन का परिणाम है जो नई iTerm2
टैब में वर्तमान निर्देशिका को खोलता है । XtraFinder इस तरह के एक बटन प्रदान करता है, लेकिन यह नई खिड़कियां खोलता है।
सेवाओं का उपयोग करने वाला एक समान समाधान यहां पाया जा सकता है , जो और भी अधिक संबंधित AppleScript समाधानों के लिए लिंक करता है:
मेरा अनुकूलित AppleScript है:
try
tell application "iTerm2"
tell the last terminal
launch session "Default Session"
tell the last session
tell i term application "Finder"
set cur_dir to (the target of the front Finder window) as string
end tell
set cur_dir to POSIX path of cur_dir
write text "cd " & cur_dir
end tell
end tell
end tell
end try
यह समाधान इस बटन-संबंधित थ्रेड में टिप्पणी की गई थी ।
ऊपर दिए गए iTermTo उत्तर के लिए धन्यवाद ।
मुझे लगता है कि यह इसलिए है क्योंकि iTerm के इंटर्नल्स बदल गए हैं, लेकिन मेरे लिए कोई भी समाधान काम नहीं किया। निम्नलिखित कोड क्या था:
tell application "Finder"
set cur_dir to POSIX path of ((the target of the front Finder window) as string)
end tell
tell application "iTerm"
tell (create window with default profile)
write current session text "cd " & quoted form of cur_dir
end tell
end tell
या एक खोजक सेवा के रूप में ऑटोमेटर का उपयोग करना:
on run {input, parameters}
tell application "Finder"
set cur_dir to POSIX path of (input as string)
end tell
tell application "iTerm"
tell (create window with default profile)
write current session text "cd " & quoted form of cur_dir
end tell
end tell
end run
यहाँ एक सरल स्क्रिप्ट है जो हमेशा एक नया टैब खोलता है (जैसे बुलजीत की स्क्रिप्ट):
try
tell application "Finder"
if number of Finder windows is 0 then
set p to POSIX path of (desktop as alias)
else
set p to POSIX path of (target of Finder window 1 as alias)
end if
end tell
tell application "iTerm"
reopen
tell current terminal
tell (launch session "Default Session")
write text "cd " & quoted form of p
end tell
end tell
activate
end tell
end try
यदि आप चाहते हैं कि स्क्रिप्ट मौजूदा टैब का पुन: उपयोग करे, तो tell current terminal
ब्लॉक को इस तरह बदलें :
tell current session of current terminal
write text "cd " & quoted form of p
end tell
लेकिन यह काम नहीं करेगा अगर उदाहरण के लिए वर्तमान सत्र व्यस्त है या कम या विम प्रक्रिया चल रही है।
एक कोशिश ब्लॉक में स्क्रिप्ट लपेटकर यह चुपचाप विफल रहता है। reopen
एक नई टर्मिनल विंडो खोलता है यदि कोई दृश्यमान विंडो नहीं है या केवल उदाहरण के लिए प्राथमिकताएं विंडो खुली है। खोजक के पास एक insertion location
संपत्ति भी है , जो आमतौर पर target of Finder window 1
या डेस्कटॉप है। लेकिन 10.7 में एक बग है और बाद में जहां यह अक्सर सामने की खिड़की की तुलना में किसी अन्य विंडो को संदर्भित करता है।
बुलजीत की स्क्रिप्ट के साथ कुछ संभावित समस्याएं:
front window
( window 1
), जो एक सूचना खिड़की या एक प्राथमिकता वाली खिड़की हो सकती है। Finder window 1
हमेशा एक फ़ाइल ब्राउज़र विंडो होगी।/
यदि सामने का फाइंडर विंडो एक दृश्य प्रदर्शित कर रहा है जिसमें कोई रास्ता नहीं है (जैसे नेटवर्क दृश्य)।मैं सिर्फ इस तरह एक समारोह का उपयोग कर पसंद करते हैं:
cf () {
c "$(osascript -e 'tell application "Finder"
POSIX path of (target of Finder window 1 as alias
end tell)' 2> /dev/null)"
}