樹莓派進階之路 (005) - 樹莓派Zsh安裝腳本(原創)

zsh.shhtml

 1 #!/bin/bash
 2 
 3 cd 
 4 #安裝zsh
 5 sudo apt-get install zsh
 6 #查看zsh
 7 cat /etc/shells
 8 #更改zsh
 9  chsh -s /bin/zsh
10 #自動安裝:
11 wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
12 #下載
13 git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
14 cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
15 #設置
16 cd pi/pi_sh/
17 cat zsh.txt >> ~/.zshrc
18 
19 #安裝插件
20 git clone git://github.com/joelthelion/autojump.git
21 cd autojump
22 sudo ./install.py

 

zsh.txtjava

 1 alias cls='clear'
 2 alias ll='ls -l'
 3 alias la='ls -a'
 4 alias vi='vim'
 5 alias javac="javac -J-Dfile.encoding=utf8"
 6 alias grep="grep --color=auto"
 7 alias -s html=mate   # 在命令行直接輸入後綴爲 html 的文件名,會在 TextMate 中打開
 8 alias -s rb=mate     # 在命令行直接輸入 ruby 文件,會在 TextMate 中打開
 9 alias -s py=vi       # 在命令行直接輸入 python 文件,會用 vim 中打開,如下相似
10 alias -s js=vi
11 alias -s c=vi
12 alias -s java=vi
13 alias -s txt=vi
14 alias -s gz='tar -xzvf'
15 alias -s tgz='tar -xzvf'
16 alias -s zip='unzip'
17 alias -s bz2='tar -xjvf

使用腳本時須要在家目錄中添加 zsh.txt 文件。python

相關文章
相關標籤/搜索