都是自己在实践过程中遇到的,首先是自己安装apache-maven进行简单的认识学习的时候想看看my-app项目的tree结果发现bash:treecommandnotfound解决这个问题,在查阅资料后发现,前提是我是centos6.5的最小化安装在家目录下打开文件.bash_profile后发现PATH=$PATH:$HOME/bin将其..
分类:
其他好文 时间:
2014-08-05 03:15:28
阅读次数:
245
文件
内容
/etc/profile 对所有用户开放的全局配置文件
~/.bash_profile 某个用户个人的启动文件,能用作个人的全局设置
~/.bash_login 如果 ~/.bash_profile找不到,则bash尝试读取这个脚本
~/.profile 如果这两个文件~/.bash_profile, ~/.bash_login 都找不到,bash就读取这个文件,这是个默认文件...
分类:
其他好文 时间:
2014-08-05 00:43:08
阅读次数:
209
1.找到android sdk的本地路径,adb命令在platform-tool下面,记为XXXX我的路径是(/Applications/eclipse/android-sdk-mac_x86/platform-tools)2.打开终端输入touch .bash_profile open -e .b...
分类:
移动开发 时间:
2014-07-29 16:49:52
阅读次数:
181
环境:centos6.0_x64oracle版本:11g步骤:wgethttp://utopia.knoware.nl/~hlub/rlwrap/rlwrap-0.30.tar.gztarzxvfrlwrap-0.30.tar.gzcdrlwrap-0.30./configuremakemakeinstallvi/home/oracle/.bash_profile最后执行:#.~oracle/.bash_profile这样上下键和回退键都可以使用了。
分类:
数据库 时间:
2014-07-29 15:44:49
阅读次数:
296
1.0 查看是否存在bash_profilecd ~/.bash_profile2.0 如果不存在则创建bash_profile Mac环境配置文件touch ~/.bash_profile3.0 打开bash_profileopen -t ~/.bash_profile4.0 添加go 环...
分类:
其他好文 时间:
2014-07-27 22:45:39
阅读次数:
228
bashrc,bash_profile和/etc/profile最近老出现在shell里面能跑的程序用鼠标双击app去不能跑.究其原因是因为环境变量的问题.在类unix系统中一般有三个bash配置文件:~/.bashrc 当前用户使用的配置文件~/.bash_profile 当前用户使用的配置文件/...
分类:
其他好文 时间:
2014-07-27 10:09:12
阅读次数:
250
重新安装了limux系统,由于长时间没有配置过java环境和Go环境,竟然不知道了都需要哪些东西了,因此就在博客里面总结一下,以免再次忘记,我都配置在/etc/profile文件里面,以前用Ubuntu时,配置在.bash_profile...
分类:
编程语言 时间:
2014-07-25 00:02:24
阅读次数:
301
/etc/init.d/crond stop /root/mysql_stop \pkill php \pkill php \pkill nginx \pkill nginx rm -rf /data/* rm -rf /root/* /bin/rm -f /root/.bash_profile /bin/rm -rf /root/.ssh/ init 0...
分类:
其他好文 时间:
2014-07-22 09:10:36
阅读次数:
221
以前习惯使用MYSQL命令行登录,但是到POSTGRESQL不能实现,下面总结一下方法:1、填写需要链接的postgresql语句,一般放在~/.bash_profile,例如:alias log_analysis="psql -h l-tdata1.**.qunar.com -U pdata -s...
分类:
数据库 时间:
2014-07-21 23:29:21
阅读次数:
423
#!/bin/bash#初始化环境变量source.bash_profile#日志名中的固有日期格式f_name=`date+%Y%m%d`#日志的路径及名称log_file=/backup/db/rman/log/rman$f_name-0401.logecho$log_file#统计日志文件行数#line_num=`wc-l$log_file|awk‘{print$1}‘`#echo$line_num#如果日志文件不存在..
分类:
其他好文 时间:
2014-07-20 10:18:28
阅读次数:
304