摘要:
set http or socks proxy # set http proxy export http_proxy=http://127.0.0.1:8080 # set http proxy with user and password export http_proxy=http://USER 阅读全文
摘要:
vim 配置文件 vim 的全局配置一般在/etc/vim/vimrc或者/etc/vimrc,对所有用户生效。用户个人的配置在~/.vimrc "语法高亮 syntax on "在底部显示,当前处于命令模式还是插入模式 set showmode "命令模式下,在底部显示,当前键入的指令 set s 阅读全文
摘要:
一、显示消息 使用 echo 命令来显示消息 $ echo This is a test This is a test $ echo "Let's see if this'll work" Let's see if this'll work echo 输出不换行 echo 命令的 -n 参数表示输出 阅读全文