如何通过运行脚本让所有终端/shell 重新加载其环境?
我在家和工作时都使用 Mac。我使用一个名为 Marco-polo 的程序来检测我是在家还是在工作。通过这个,我可以让它运行一个脚本来更改我的代理,并运行一些脚本来针对不同的环境以不同的方式配置我的计算机,例如通过 /etc/hosts 复制hosts.work和hosts.home以及复制.profile.work和. profile.home 覆盖 ~/.profile。
到目前为止,我未能成功做到的是找到一种方法,让所有正在运行的终端在更改位置时重新加载我的 .profile 文件。谁能建议一种方法来做到这一点?
谢谢,Tom
fm48 下面的回答与这个简单的脚本(放置在 /usr/bin/pkill )完美结合。
#!/bin/sh
sig=""
if [[ "$1" =~ - ]]; then
sig=$1;
shift
fi
for X in `ps acx | grep -i $1 | awk {'print $1'}`; do
kill $sig $X;
done
I use my mac at home and at work. And I use a program called Marco-polo to detect whether I am at home or at work. Through this, I can get it to run a script that changes my proxy and run some scripts to configure my computer differently for the different environments like copying hosts.work and hosts.home over /etc/hosts and copy .profile.work and .profile.home over ~/.profile.
What I have not been able to do successfully so far, is to find a way to have all my running terminals reload my .profile file when I change location. Can anyone suggest a method for doing this?
Thanks, Tom
fm48 answer below in combination with this simple script (placed at /usr/bin/pkill) worked perfectly.
#!/bin/sh
sig=""
if [[ "$1" =~ - ]]; then
sig=$1;
shift
fi
for X in `ps acx | grep -i $1 | awk {'print $1'}`; do
kill $sig $X;
done
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用像 SIGUSR1 这样的信号。首先使用
trap ". ${HOME}/.profile" SIGUSR1
启用重新加载 ~/.profile 的信号。之后,您应该向所有 shell 发送 SIGUSR1 信号。例如,如果 bash 是使用的 shell,则
pkill -SIGUSR1 bash
。You should use a signal like SIGUSR1. First enable the signal to reload the ~/.profile with
trap ". ${HOME}/.profile" SIGUSR1
.After that you should send all shells the SIGUSR1 signal. For example
pkill -SIGUSR1 bash
if bash is the used shell.如果您采用 Screen 作为终端管理器,您可以使用以下命令向所有 shell 发送命令:
screen -X at \# stuff "whatever command\n"
If you adopt Screen as a terminal manager, you can send commands to all your shells with:
screen -X at \# stuff "whatever command\n"