mirror of
https://shylinux.com/x/ContextOS
synced 2025-04-26 01:04:06 +08:00
opt some
This commit is contained in:
parent
58cb4cd35d
commit
5fb0b39a01
@ -14,6 +14,7 @@ ish_sys_cli_prompt
|
|||||||
ish_sys_cli_alias vi vim
|
ish_sys_cli_alias vi vim
|
||||||
ish_sys_cli_alias t "tmux attach"
|
ish_sys_cli_alias t "tmux attach"
|
||||||
ish_sys_cli_alias busybox "docker run -w /root -it busybox"
|
ish_sys_cli_alias busybox "docker run -w /root -it busybox"
|
||||||
|
ish_sys_cli_alias alpine-dev "docker run -w /root -e 'LANG=en_US.UTF-8' -it alpine-dev sh"
|
||||||
ish_sys_cli_alias alpine "docker run -w /root -e 'LANG=en_US.UTF-8' -it alpine"
|
ish_sys_cli_alias alpine "docker run -w /root -e 'LANG=en_US.UTF-8' -it alpine"
|
||||||
ish_sys_cli_alias centos "docker run -w /root -e 'LANG=en_US.UTF-8' -it centos"
|
ish_sys_cli_alias centos "docker run -w /root -e 'LANG=en_US.UTF-8' -it centos"
|
||||||
|
|
||||||
|
20
etc/miss.sh
20
etc/miss.sh
@ -1,9 +1,9 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
export ctx_dev=${ctx_dev:="https://shylinux.com"}
|
# export ctx_dev=${ctx_dev:="https://shylinux.com"}
|
||||||
if [ -f $PWD/.ish/plug.sh ]; then source $PWD/.ish/plug.sh; elif [ -f $HOME/.ish/plug.sh ]; then source $HOME/.ish/plug.sh; else
|
# if [ -f $PWD/.ish/plug.sh ]; then source $PWD/.ish/plug.sh; elif [ -f $HOME/.ish/plug.sh ]; then source $HOME/.ish/plug.sh; else
|
||||||
temp=$(mktemp); if curl -h &>/dev/null; then curl -o $temp -fsSL $ctx_dev; else wget -O $temp -q $ctx_dev; fi; source $temp intshell
|
# temp=$(mktemp); if curl -h &>/dev/null; then curl -o $temp -fsSL $ctx_dev; else wget -O $temp -q $ctx_dev; fi; source $temp intshell
|
||||||
fi
|
# fi
|
||||||
|
|
||||||
require miss.sh
|
require miss.sh
|
||||||
require sys/sys.sh
|
require sys/sys.sh
|
||||||
@ -17,14 +17,14 @@ ish_miss_prepare_project
|
|||||||
# ish_miss_prepare wubi-dict
|
# ish_miss_prepare wubi-dict
|
||||||
# ish_miss_prepare word-dict
|
# ish_miss_prepare word-dict
|
||||||
|
|
||||||
# ish_miss_prepare go-sql-mysql
|
ish_miss_prepare go-sql-mysql
|
||||||
# ish_miss_prepare go-qrcode
|
ish_miss_prepare go-qrcode
|
||||||
# ish_miss_prepare creackpty
|
ish_miss_prepare creackpty
|
||||||
# ish_miss_prepare websocket
|
ish_miss_prepare websocket
|
||||||
# ish_miss_prepare webview
|
ish_miss_prepare webview
|
||||||
# ish_miss_prepare echarts
|
# ish_miss_prepare echarts
|
||||||
# ish_miss_prepare icons
|
# ish_miss_prepare icons
|
||||||
# ish_miss_prepare gogit
|
ish_miss_prepare gogit
|
||||||
|
|
||||||
ish_miss_prepare linux-story
|
ish_miss_prepare linux-story
|
||||||
ish_miss_prepare nginx-story
|
ish_miss_prepare nginx-story
|
||||||
|
12
go.mod
12
go.mod
@ -16,6 +16,18 @@ replace (
|
|||||||
shylinux.com/x/toolkits => ./usr/toolkits
|
shylinux.com/x/toolkits => ./usr/toolkits
|
||||||
)
|
)
|
||||||
|
|
||||||
|
replace (
|
||||||
|
shylinux.com/x/go-sql-mysql => ./usr/go-sql-mysql
|
||||||
|
shylinux.com/x/gogit => ./usr/gogit
|
||||||
|
shylinux.com/x/webview => ./usr/webview
|
||||||
|
)
|
||||||
|
|
||||||
|
replace (
|
||||||
|
shylinux.com/x/creackpty => ./usr/creackpty
|
||||||
|
shylinux.com/x/go-qrcode => ./usr/go-qrcode
|
||||||
|
shylinux.com/x/websocket => ./usr/websocket
|
||||||
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
shylinux.com/x/golang-story v0.5.8
|
shylinux.com/x/golang-story v0.5.8
|
||||||
shylinux.com/x/linux-story v0.5.4
|
shylinux.com/x/linux-story v0.5.4
|
||||||
|
Loading…
x
Reference in New Issue
Block a user