山寨手机用的

源代码在线查看: .bash_profile

软件大小: 5 K
上传用户: srbrabbit
关键词: 山寨 手机
下载地址: 免注册下载 普通下载 VIP

相关代码

				# Begin ~/.bash_profile				# Written for Beyond Linux From Scratch				# by James Robertson 				# updated by Bruce Dubbs 								# Personal environment variables and startup programs.								# Personal aliases and functions should go in ~/.bashrc.  System wide				# environment variables and startup programs are in /etc/profile.				# System wide aliases and functions are in /etc/bashrc.								append () {				  # First remove the directory				  local IFS=':'				  local NEWPATH				  for DIR in $PATH; do				     if [ "$DIR" != "$1" ]; then				       NEWPATH=${NEWPATH:+$NEWPATH:}$DIR				     fi				  done								  # Then append the directory				  export PATH=$NEWPATH:$1				}								if [ -f "$HOME/.bashrc" ] ; then				  source $HOME/.bashrc				fi								if [ -d "$HOME/bin" ] ; then				  append $HOME/bin				fi								unset append								# End ~/.bash_profile							

相关资源