码迷,mamicode.com
首页 > 系统相关 > 详细

读 linux_101_hacks 有感

时间:2014-06-11 09:51:09      阅读:374      评论:0      收藏:0      [点我收藏+]

标签:使用   文件   linux   php   file   ui   

强大的 CD 命令技巧

-rw-------.  1 root root    14808 Mar 13 12:31 .bash_history
-rw-r--r--.  1 root root       18 May 20  2009 .bash_logout
-rw-r--r--.  1 root root      176 May 20  2009 .bash_profile
-rw-r--r--.  1 root root      212 Jan 11 11:23 .bashrc
-rw-r--r--.  1 root root      100 Sep 23  2004 .cshrc   


读 linux_101_hacks 有感


/etc/profile:此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行.
并从/etc/profile.d目录的配置文件中搜集shell的设置.
/etc/bashrc:为每一个运行bash shell的用户执行此文件.当bash shell被打开时,该文件被读取.
~/.bash_profile:每个用户都可使用该文件输入专用于自己使用的shell信息,当用户登录时,该
文件仅仅执行一次!默认情况下,他设置一些环境变量,执行用户的.bashrc文件.
~/.bashrc:该文件包含专用于你的bash shell的bash信息,当登录时以及每次打开新的shell时,该
该文件被读取.
~/.bash_logout:当每次退出系统(退出bash shell)时,执行该文件.

另外,/etc/profile中设定的变量(全局)的可以作用于任何用户,而~/.bashrc等中设定的变量(局部)只能继承/etc/profile中的变量,他们是"父子"关系.
 
~/.bash_profile 是交互式、login 方式进入 bash 运行的
~/.bashrc 是交互式 non-login 方式进入 bash 运行的
通常二者设置大致相同,所以通常前者会调用后者。

设置生效:可以重启生效,也可以使用命令:source
alias php=/var/eyouim/pub/php/bin/php
source /etc/profile

14 alias ..="cd .."
15 alias ..2="cd ../.."
16 alias ..3="cd ../../.."
17 alias ..4="cd ../../../.."
18 alias ..5="cd ../../../../.."

读 linux_101_hacks 有感,布布扣,bubuko.com

读 linux_101_hacks 有感

标签:使用   文件   linux   php   file   ui   

原文地址:http://www.cnblogs.com/it-zhijian/p/3772972.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!