24.3. Starting file

简介:

24.3.1. ~/.zshrc

neo@netkiller:~$ cat .zshrc
# Created by newuser for 4.3.9
PROMPT='%n@%M:%~$ '

# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
    eval "`dircolors -b`"
    alias ls='ls --color=auto'
    alias dir='dir --color=auto'
    alias vdir='vdir --color=auto'

    alias grep='grep --color=auto'
    alias fgrep='fgrep --color=auto'
    alias egrep='egrep --color=auto'
fi

# some more ls aliases
alias ll='ls -l'
alias la='ls -A'
alias l='ls -CF'

# Home/End/Del key
bindkey '\e[1~' beginning-of-line
bindkey '\e[4~' end-of-line
bindkey "\e[3~" delete-char
			




原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
autoreconf: failed to run autopoint: No such file or directory
autoreconf: failed to run autopoint: No such file or directory
240 0
|
关系型数据库 MySQL
Last_Error: Unable to use slave's temporary directory /var/tmp
<br><br> mysql&gt; SHOW SLAVE STATUS\G; <br> *************************** 1. row ***************************<br>                Slave_IO_State: Waiting for master to send event<br>            
1820 0
ftok info: No such file or directory
ftok info: No such file or directory
283 0
HOWTO recover deleted files on an ext3 file system
http://www.xs4all.nl/~carlo17/howto/undelete_ext3.html 
650 0
|
存储
rman备份失败:ORA-00245: control file backup failed; target is likely on a local file system
rman备份失败:ORA-00245: control file backup failed; target is likely on a local file system
200 0
|
开发工具 关系型数据库 MySQL
Starting MySQL... ERROR! The server quit without updating PID file (/mydata/data/t1.pid).
<p>测试环境:</p> <p>mysql 5.6.25 (适用5.1.73 5.1.65)</p> <p><br></p> <p>1</p> <p>vim /etc/my.cnf</p> <p>pid-file=/mypid/t1.pid</p> <p><br></p> <p><br></p> <p>今天在备份的时候,我测试把mysql-log.index删除之后报错如下
3057 0