vim ~/.bash_profie加入如下片段:# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ] ; then
source .bashrc
fi最后source:source ~/.bash_profile重新ssh即可
vim中文乱码:编辑~目录下的.vimrc文件,如果没有这个文件也是直接用以下命令创建即可vim ~/.vimrc在最后加上fileencodings、enc、fencsset fileencodings=utf-8,gb2312,gb18030,gbk,ucs-bom,cp936,latin1
set enc=utf8
set fencs=utf8,gbk,gb2312,gb18030
目录[TOC]QuestionI am working on a remote Debian Jessie server. I have started a screen session, started running a script, then been disconnected by a network timeout.Now I have logged in again and want to resume the session.This is what I see when ...