Xshell客户端在vim编辑文件保存退出,仍然显示文本内容,而不是回到shell terminal终端. 解决办法如下: User1 is using TERM=xterm, in this case when you exit vim it will clear the terminal. User2 is using TERM=vt100, in this case when you exit vim it will not clear the terminal. 具体操作: 1,vim…
bash环境配置及脚本(02)_recv bash环境配置及脚本(02)_recv bash环境配置文件: 按生效范围划分,存在两类: 全局配置: /etc/profile /etc/bashrc 个人配置: ~/.bash_profile ~/.bashrc 按照功能划分:存在两类 Profile类:为交互式登陆的shell提供配置 全局:/etc/profile或/etc/profile.d/*.sh 案列:vim /ect/profile Echo “Welcome , your home…
Purpose: Display certain line or lines from a text file, such as : Display the 1000th line from file message.log or Display the lines between 1000 and 1020 from file message.log Solution: Using sed: sed -n '1000,1020p' message.log sed -n '1000,1020p;…
/*************************************************************************** * vim 退出保留显示的内容 * 声明: * 本文主要是记录是什么决定了vi退出时清屏或者不清屏,因为在busybox中的 * vi就是不清屏,而在ubuntu中的vi是清屏的.vim退出不清屏那么就可以看到退出 * 时的内容,有时候这还是挺有用的. * * 2016-2-24 深圳 南山平山村 曾剑锋 *******************…
前言  鉴于BASH及其周边强大的工具以及VIM高效快捷,加上现在我工作重心转移到前端开发上,因此我华丽地转向Linux阵营(当然从最傻瓜式的Ubuntu开始啦!).但BASH和VIM默认样式确实颜值太低,功能强大固然重要,但在这看脸的时代谁不爱美呢?那么我们先拿状态栏来开刀吧,而刀就是强大酷炫的Powerline本尊了. Powerline是什么?  Powerline是个stateless status line,即可以配置到BASH,ZSH,VIM等上,而不像vim-powerline那样…
查看当前系统环境变量 cat test2: #!/bin/bash # display user information from the system. echo "User info for userid:$USER" echo UID:$UID echo HOME:$HOME 添加执行权限:chmod u+x test2 运行:./test2 结果如下: User info for userid:clarck UID: HOME:/home/clarck…
关于bash的四种工作方式的不同,可以参考:http://feihu.me/blog/2014/env-problem-when-ssh-executing-command-on-remote/,但是由于每个linux系统都有不同表现,只可以参考,实际还要以你当前的linux系统为准 bash的文档还是要学习的:man -a bash BASH() BASH() NAME bash - GNU Bourne-Again SHell SYNOPSIS bash [options] [file] C…
错误如下: Ignoring required pre-requisite failures. Continuing... Preparing to launch Oracle Universal Installer from /tmp/OraInstall2015-01-29_03-14-51AM. Please wait ... DISPLAY not set. Please set the DISPLAY and try again. Depending on the Unix Shell…
开门见山 git bash 是 Windows 用户安装 git 时默认安装的命令行工具,不仅界面漂亮功能也不错,大多数情况下可以替代 Windows 原生的 cmd 命令行. 然而,git bash 命令行不是万金油,并不能完全替代 cmd ,详情请参考 mintty 官网的相关说明. mintty is not a full replacement for the Windows Console window git bash 命令行默认使用 mintty 作为终端模拟器,而 mintty…