909 发表于 2004-12-25 19:18:44

如何把命令加如路径

比如说把 “id”加入PATH中~要怎么做???

yangh 发表于 2004-12-25 21:14:47

找到先找到 id 在哪儿

root #> whereis id
id: /usr/bin/id /usr/include/id3.h /usr/share/man/man1/id.1.gz


然后加到 ~/.bashrc 里

root #> cat /root/.bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.

#set path enverement
PATH="$PATH:/usr/bin"


其实这个路径默认已经有了的

909 发表于 2004-12-26 12:07:59

谢谢~我去试试~~~~~~~
页: [1]
查看完整版本: 如何把命令加如路径