OS X Terminal.app: як запустити нову вкладку в тому ж каталозі, що і поточна вкладка?


24

Мені часто потрібно відкривати нову вкладку в тому ж каталозі, що і мою поточну вкладку, щоб зробити щось інше, поки мою поточну вкладку займає тривалий процес. Однак за замовчуванням під час створення нової вкладки Terminal.app починається з ~ /. Будь-яка ідея, як зробити так, щоб він автоматично стрибав?


Дякую хлопцям за багато швидких відповідей! Я чудово запускаю нову вкладку, використовуючи сценарій, але мені було цікаво, чи є інший спосіб зробити це, оскільки я не в змозі запустити сценарій, якщо вже є програма, яка працює і займає поточну вкладку: |
Ріобард

Відповіді:


10

В OS X 10.7 (Lion) Terminal.app підтримує це: New Windows/Tabs open in: Same working directory


Дуже погано, що Apple не робить опори ... хотілося б побачити цю особливість у Snow Leopard.
Блукати Наута

4
У мене це встановлено, але це не працює для мене. Вікно налаштувань говорить про те, щоб увімкнути послідовність втечі, перш ніж це зможе спрацювати.
Рам на рейках

2

Треба бути дуже обережним при проходженні рядків через різні середовища.

Я запускаю 10.4, тому мій сценарій 'tfork' завжди замість цього відкриває нове вікно. Потрібно легко адаптувати його до використання вкладки:

#!/bin/sh

# source: http://www.pycs.net/bob/weblog/2004/02/23.html#P49
# Rewritten to use osascript args -> run handler args.
# Added ability to pass additional initial command and args to new shell.
#    Bug: Non ASCII characters are unreliable on Tiger.
#         Tiger's osascript seems to expect args to be encoded in
#         the system's primary encoding (e.g. MacRoman).
#         Once in AppleScript, they are handled OK. Terminal sends them
#         back to the shell as UTF-8.

test $# -eq 0 && set -- : # default command if none given
osascript - "$(pwd)" "$@" <<\EOF
on run args
  set dir to quoted form of (first item of args)
  set cmd_strs to {}
  repeat with cmd_str in rest of args
    set end of cmd_strs to quoted form of cmd_str
  end
  set text item delimiters to " "
  set cmd to cmd_strs as Unicode text
  tell app "Terminal" to do script "cd " & dir & " && " & cmd
end
EOF

Приклад: tfork git log -p ..FETCH_HEAD


Поправка: cwd вже запущеного процесу "займає" вкладку терміналу

Ідея "поточного каталогу програми, що займає поточну вкладку", не така очевидна, як можна було очікувати.

Кожна вкладка " Термінал" має по одному пристрою, який використовується в процесах, які він виконує (спочатку оболонку; після цього, що тільки оболонка починається).

Кожен (звичайний) термінал tty має єдину групу процесу переднього плану, яку можна вважати "займає" tty.

Кожна група процесів може мати в ній кілька процесів.

Кожен процес може мати власний поточний робочий каталог (cwd) (деякі середовища дають кожному потоку власний cwd або cwd-еквівалент, але ми це ігноруємо).

Попередні факти встановлюють своєрідний слід, що від tty до cwd: tty -> група процесу переднього плану -> процеси групи переднього плану -> cwds.

Перша частина (від tty до переднього плану) проблеми може бути вирішена виведенням з ps :

ps -o tty,pid,tpgid,pgid,state,command | awk 'BEGIN{t=ARGV[1];ARGC=1} $1==t && $3==$4 {print $2}' ttyp6

(де “ttyp6” - назва цікавого tty)

Відображення від процесу (PID) до cwd можна зробити за допомогою lsof :

lsof -F 0n -a -p 2515,2516 -d cwd

(де "2515,2516" - це список відомих процесів, що представляють інтерес)

Але під Tiger я не бачу прямого способу отримати назву пристрою tty певного вікна терміналу . Існує жахливо потворний спосіб отримати назву tty у Тигра. Можливо, Леопард або Сніговий Леопард можуть зробити краще.

Я все це склав у AppleScript так:

on run
    (* Find the tty. *)
    -- This is ugly. But is seems to work on Tiger. Maybe newer releases can do better.
    tell application "Terminal"
        set w to window 1
        tell w
            set origName to name
            set title displays device name to not title displays device name
            set newName to name
            set title displays device name to not title displays device name
        end tell
    end tell
    set tty to extractTTY(origName, newName)
    if tty is "" then
        display dialog "Could not find the tty for of the current Terminal window." buttons "Cancel" cancel button "Cancel" default button "Cancel"
    end if

    (* Find the PIDs of the processes in the foreground process group on that tty. *)
    set pids to paragraphs of (do shell script "
ps -o pid,tty,tpgid,pgid,state,command |
awk '
    BEGIN   {t=ARGV[1];ARGC=1}
    $2==t && $3==$4 {print $1}
' " & quoted form of tty)
    if pids is {} or pids is {""} then
        display dialog "Could not find the processes for " & tty & "." buttons "Cancel" cancel button "Cancel" default button "Cancel"
    end if

    (* Find the unique cwds of those processes. *)
    set text item delimiters to {","}
    set lsof to do shell script "lsof -F 0n -a -d cwd -p " & quoted form of (pids as Unicode text) without altering line endings
    set text item delimiters to {(ASCII character 0) & (ASCII character 10)}
    set cwds to {}
    repeat with lsofItem in text items of lsof
        if lsofItem starts with "n" then
            set cwd to text 2 through end of lsofItem
            if cwds does not contain cwd then ¬
                set end of cwds to cwd
        end if
    end repeat
    if cwds is {} then
        display dialog "No cwds found!?" buttons "Cancel" cancel button "Cancel" default button "Cancel"
    end if
    if length of cwds is greater than 1 then
        set cwds to choose from list cwds with title "Multiple Distinct CWDs" with prompt "Choose the directory to use:" without multiple selections allowed and empty selection allowed
        if cwds is false then error number -128 -- cancel
    end if

    (* Open a new Terminal. *)
    tell application "Terminal" to do script "cd " & quoted form of item 1 of cwds
end run

to extractTTY(a, b)
    set str to textLeftAfterRemovingMatchingHeadAndTail(a, b)
    set offs to offset of "tty" in str
    if offs > 0 then
        return text offs through (offs + 4) of str
    end if
    return ""
end extractTTY
to textLeftAfterRemovingMatchingHeadAndTail(big, little)
    set text item delimiters to space
    if class of big is not list then set big to text items of big
    if class of little is not list then set little to text items of little
    set {maxLen, minLen} to {length of big, length of little}
    if maxLen < minLen then ¬
        set {big, little, maxLen, minLen} to {little, big, minLen, maxLen}

    set start to missing value
    repeat with i from 1 to minLen
        if item i of big is not equal to item i of little then
            set start to i
            exit repeat
        end if
    end repeat
    if start is missing value then
        if maxLen is equal to minLen then
            return ""
        else
            return items (minLen + 1) through end of big as Unicode text
        end if
    end if

    set finish to missing value
    repeat with i from -1 to -minLen by -1
        if item i of big is not equal to item i of little then
            set finish to i
            exit repeat
        end if
    end repeat
    if finish is missing value then set finish to -(minLen + 1)

    return items start through finish of big as Unicode text
end textLeftAfterRemovingMatchingHeadAndTail

Збережіть його за допомогою редактора сценаріїв ( редактор AppleScript у Snow Leopard) та використовуйте пусковий інструмент (наприклад, FastScripts ), щоб призначити його ключу (або просто запустити його з меню AppleScript (увімкнено через / Applications / AppleScript / AppleScript Utility.app )).


1

Я опублікував сценарій, який використовує код Кріса Джонсена вище та інший скрипт для відкриття нової вкладки в поточному каталозі з поточними налаштуваннями, в основному тому, що я кольорово координую свої термінали. Дякую Кріс, за цей сценарій я використовую це вже кілька місяців, і це чудова економія часу.

(* Цей скрипт відкриває нову вкладку Terminal.app в каталозі поточної вкладки з тими ж налаштуваннями. Якщо вам ще не вдалося, дозволити доступ до допоміжних пристроїв, як описано тут: http: // www .macosxautomation.com / applescript / uiscripting / index.html

Це майже вся робота двох сценаріїв, зібраних разом, дякую їм:

Сценарій Кріса Джонсена відкриває нову вкладку в поточному каталозі: OS X Terminal.app: як запустити нову вкладку в тій самій директорії, що і поточна вкладка?

"Menu_click" Якоба Руса дозволяє мені створювати вкладку з тими ж налаштуваннями, що й API терміналу: http://hints.macworld.com/article.php?story=20060921045743404

Якщо ви зміните ім'я профілю термінала, API AppleScript повертає старе ім'я до перезавантаження програми, тому сценарій не буде працювати до перейменованих налаштувань до цього часу. Тьфу. Також необхідність активації терміналу для виконання команди меню приводить всі вікна терміналу на фронт.

*)

-- from http://hints.macworld.com/article.php?story=20060921045743404
-- `menu_click`, by Jacob Rus, September 2006
-- 
-- Accepts a list of form: `{"Finder", "View", "Arrange By", "Date"}`
-- Execute the specified menu item.  In this case, assuming the Finder 
-- is the active application, arranging the frontmost folder by date.

on menu_click(mList)
    local appName, topMenu, r

    -- Validate our input
    if mList's length < 3 then error "Menu list is not long enough"

    -- Set these variables for clarity and brevity later on
    set {appName, topMenu} to (items 1 through 2 of mList)
    set r to (items 3 through (mList's length) of mList)

    -- This overly-long line calls the menu_recurse function with
    -- two arguments: r, and a reference to the top-level menu
    tell application "System Events" to my menu_click_recurse(r, ((process appName)'s ¬
        (menu bar 1)'s (menu bar item topMenu)'s (menu topMenu)))
end menu_click

on menu_click_recurse(mList, parentObject)
    local f, r

    -- `f` = first item, `r` = rest of items
    set f to item 1 of mList
    if mList's length > 1 then set r to (items 2 through (mList's length) of mList)

    -- either actually click the menu item, or recurse again
    tell application "System Events"
        if mList's length is 1 then
            click parentObject's menu item f
        else
            my menu_click_recurse(r, (parentObject's (menu item f)'s (menu f)))
        end if
    end tell
end menu_click_recurse



-- with the noted slight modification, from /superuser/61149/os-x-terminal-app-how-to-start-a-new-tab-in-the-same-directory-as-the-current-ta/61264#61264

on run
    (* Find the tty. *)
    -- This is ugly. But is seems to work on Tiger. Maybe newer releases can do better.
    tell application "Terminal"
        set w to the front window
        tell w
            set origName to name
            set title displays device name to not title displays device name
            set newName to name
            set title displays device name to not title displays device name
        end tell
    end tell
    set tty to extractTTY(origName, newName)
    if tty is "" then
        display dialog "Could not find the tty for of the current Terminal window." buttons "Cancel" cancel button "Cancel" default button "Cancel"
    end if

    (* Find the PIDs of the processes in the foreground process group on that tty. *)
    set pids to paragraphs of (do shell script "
ps -o pid,tty,tpgid,pgid,state,command |
awk '
    BEGIN   {t=ARGV[1];ARGC=1}
    $2==t && $3==$4 {print $1}
' " & quoted form of tty)
    if pids is {} or pids is {""} then
        display dialog "Could not find the processes for " & tty & "." buttons "Cancel" cancel button "Cancel" default button "Cancel"
    end if

    (* Find the unique cwds of those processes. *)
    set text item delimiters to {","}
    set lsof to do shell script "lsof -F 0n -a -d cwd -p " & quoted form of (pids as Unicode text) without altering line endings
    set text item delimiters to {(ASCII character 0) & (ASCII character 10)}
    set cwds to {}
    repeat with lsofItem in text items of lsof
        if lsofItem starts with "n" then
            set cwd to text 2 through end of lsofItem
            if cwds does not contain cwd then ¬
                set end of cwds to cwd
        end if
    end repeat
    if cwds is {} then
        display dialog "No cwds found!?" buttons "Cancel" cancel button "Cancel" default button "Cancel"
    end if
    if length of cwds is greater than 1 then
        set cwds to choose from list cwds with title "Multiple Distinct CWDs" with prompt "Choose the directory to use:" without multiple selections allowed and empty selection allowed
        if cwds is false then error number -128 -- cancel
    end if

    (* Open a new Terminal. *)

    -- Here is where I substituted the menu_click call to use the current settings

    tell application "Terminal"
        activate
        tell window 1
            set settings to name of current settings in selected tab
        end tell
    end tell
    menu_click({"Terminal", "Shell", "New Tab", settings})

    tell application "Terminal" to do script "cd " & quoted form of item 1 of cwds in selected tab of window 1
end run

to extractTTY(a, b)
    set str to textLeftAfterRemovingMatchingHeadAndTail(a, b)
    set offs to offset of "tty" in str
    if offs > 0 then
        return text offs through (offs + 6) of str
    end if
    return ""
end extractTTY
to textLeftAfterRemovingMatchingHeadAndTail(big, little)
    set text item delimiters to space
    if class of big is not list then set big to text items of big
    if class of little is not list then set little to text items of little
    set {maxLen, minLen} to {length of big, length of little}
    if maxLen < minLen then ¬
        set {big, little, maxLen, minLen} to {little, big, minLen, maxLen}

    set start to missing value
    repeat with i from 1 to minLen
        if item i of big is not equal to item i of little then
            set start to i
            exit repeat
        end if
    end repeat
    if start is missing value then
        if maxLen is equal to minLen then
            return ""
        else
            return items (minLen + 1) through end of big as Unicode text
        end if
    end if

    set finish to missing value
    repeat with i from -1 to -minLen by -1
        if item i of big is not equal to item i of little then
            set finish to i
            exit repeat
        end if
    end repeat
    if finish is missing value then set finish to -(minLen + 1)

    return items start through finish of big as Unicode text
end textLeftAfterRemovingMatchingHeadAndTail


0

Я використовую цей псевдонім / сценарій оболонки для цього.

# modified from http://www.nanoant.com/programming/opening-specified-path-in-terminals-new-tab
alias twd=new_terminal_working_directory
function new_terminal_working_directory() {
osascript <<END 
        tell application "Terminal"
            tell application "System Events" to tell process "Terminal" to keystroke "t" using command down
        do script "cd $(pwd)" in first window
    end tell
END
}

1
Схоже, це матиме проблеми, якщо у cwd є певні символи (мета-символи оболонки та керовані маркери; наприклад, каталог із пробілом у ньому).
Кріс Джонсен

0

Сценарій за цим посиланням виглядає так, що у нього виникнуть проблеми з директорією та командою / аргументами, які вбудували в них одинарні лапки. Напевно, не надто ймовірно, але це помилка.
Кріс Джонсен
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.