如何获取 tty shell 工作目录?

如何获取 tty shell 工作目录?

是否可以获取我的任何 tty shell 的工作目录?因此,获取/dev/ttys???属于我的任何 shell 的工作目录。我使用 OS X。

答案1

编写一个脚本,用于ps识别 tty,然后使用它lsof来获取当前工作目录。我不会为您编写脚本,但这里有两个示例可以帮助您:

-f显示 ttys的选项ps

$ ps -f 
  UID   PID  PPID   C     STIME TTY           TIME CMD
  503  1019  1015   0   0:00.33 ttys000    0:00.43 -bash
  503 72786  1019   0   0:00.04 ttys000    0:00.06 ssh c10
  503  1275  1188   0   0:00.17 ttys001    0:00.21 /bin/bash --noediting -i
  503  1789  1188   0   0:00.04 ttys002    0:00.05 /bin/bash --noediting -i
  503  4191  1188   0   0:00.06 ttys003    0:00.07 /bin/bash --noediting -i
  503  7430  7429   0   0:00.18 ttys004    0:00.26 -bash
  503 74273 74272   0   0:00.02 ttys007    0:00.03 -bash
  503 74310 74309   0   0:00.01 ttys008    0:00.02 -bash

此示例查找 bash 进程,但你可以循环遍历上一个输出中的进程 ID

$ lsof | grep bash | grep cwd
bash       1019 dharris  cwd      DIR       14,2      1530  1813370 /private/tmp
bash       4191 dharris  cwd      DIR       14,2      1122 40387322 /Users/dharris/src
bash       7430 dharris  cwd      DIR       14,2      4420   807137 /Users/dharris
bash      74273 dharris  cwd      DIR       14,2       306  1856173 /Applications/Preview.app/Contents
bash      74310 dharris  cwd      DIR       14,2       612  1657335 /opt/local/etc
bash      74343 dharris  cwd      DIR       14,2      4420   807137 /Users/dharris

答案2

根据其他回复:

tty_dir() {
  PIDS="$(ps -t $1 -opid= | tr -d ' ' | tr '\n' ',')"
  [[ -n "$PIDS" ]] || { echo "no pids found for $1"; return 1; }
  lsof -a -d cwd -c '/^(k|c|ba|tc|z)?sh$/' -p "$PIDS" -Fn | grep ^n | cut -c2-
}

tty_dir ttys000

答案3

尝试一下这些,看看它们是否能满足您的需求:

pgrep '^(k|c|ba|tc|z|)sh$' | xargs -I % readlink -e /proc/%/cwd

或者

pgrep '^(k|c|ba|tc|z|)sh$' | xargs -I % ls -l /proc/%/cwd

相关内容