forked from x/icebergs
30 lines
596 B
Plaintext
30 lines
596 B
Plaintext
title "zsh"
|
|
refer `
|
|
官网 https://www.zsh.org/
|
|
文档 http://zsh.sourceforge.net/Doc/Release/zsh_toc.html
|
|
源码 https://github.com/zsh-users/zsh/
|
|
`
|
|
|
|
chapter "源码"
|
|
field zsh web.code.bash.zsh
|
|
field zsh web.code.inner args `[ usr/install/zsh-5.8/ Src/main.c 91 ]`
|
|
|
|
section "构建"
|
|
spark shell `
|
|
yum install -y wget make gcc
|
|
yum install -y ncurses-devel.x86_64
|
|
|
|
wget https://nchc.dl.sourceforge.net/project/zsh/zsh/5.8/zsh-5.8.tar.xz
|
|
tar xvf zsh-5.8.tar.xz && cd zsh-5.8
|
|
|
|
./configure --prefix=$PWD/_install
|
|
make -j8 && make install
|
|
`
|
|
|
|
section "启动"
|
|
spark shell `
|
|
cd ./_install
|
|
./bin/zsh
|
|
`
|
|
|