找回密码
 立即注册
  • QQ空间
  • 回复
  • 收藏

tlog='tail -f /usr/local/tomcat5/logs/catalina....

# .bashrc
# User specific aliases and functions
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias astart='/usr/local/apache2/bin/apachectl start'
alias astop='/usr/local/apache2/bin/apachectl stop'
alias astat='PS ax | grep httpd '
alias tstart='/usr/local/tomcat5/bin/catalina.sh start'
alias tstop='/usr/local/tomcat5/bin/catalina.sh stop'
alias tstat='ps ax | grep tomcat '
alias tlog='tAIl -f /usr/local/tomcat5/logs/catalina.out &'
# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi
这是全部代码,还有if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi
是什么意思,谢谢!
/usr/local/tomcat5/logs/catalina.out &
再问下path后面的“&”是什么意思??
alias tstat='ps ax | grep tomcat '这句什么意思?
谢谢!
回复

使用道具 举报

大神点评(1)

admin 2019-9-11 21:49:55 显示全部楼层
tail -f 是linux下的命令 意思是动态监视文件尾部。比如log更新了,在屏幕上立马就能看见
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi
上面这个是 文件中包含个人的别名和函数设置,固定写法。用途是
# 个人环境变量和启动程序在 ~/.bash_profile中设置。
# 文件包含系统全局变量和初始程序包含于/etc/profile
# 系统全局的别名(aliases)和函数应该包含于/etc/bashrc。
回复 支持 反对

使用道具 举报

说点什么

您需要登录后才可以回帖 登录 | 立即注册
HOT • 推荐