mirror of
https://shylinux.com/x/icebergs
synced 2025-04-26 01:24:05 +08:00
27 lines
528 B
Plaintext
27 lines
528 B
Plaintext
title "zsh"
|
|
refer `
|
|
官网 https://www.zsh.org/
|
|
源码 https://github.com/zsh-users/zsh/
|
|
文档 http://zsh.sourceforge.net/Doc/Release/zsh_toc.html
|
|
`
|
|
|
|
chapter "源码"
|
|
field zsh web.code.zsh.zsh
|
|
field zsh web.code.inner args `[ usr/install/zsh-5.8/ Src/main.c 91 ]`
|
|
|
|
section "构建"
|
|
spark shell `
|
|
wget https://sourceforge.net/projects/zsh/files/zsh/5.8/zsh-5.8.tar.xz
|
|
tar xvf zsh-5.8.tar.gz && cd zsh-5.8
|
|
|
|
./configure --prefix=$PWD/_install
|
|
make -j4 && make install
|
|
`
|
|
|
|
section "启动"
|
|
spark shell `
|
|
cd ./_install
|
|
./bin/zsh
|
|
`
|
|
|