the system vimrc in $VIM (on Amiga systems, s:.vimrc is considered a user vimrc) The user vimrc file often does not exist until created by the user. If you cannot find $HOME/.vimrc (or $HOME/_vimrc on Windows) then you can, and probably should, just create it. The system vi...
whereis 命令只能用户程序名称的搜索,而且只搜索二进制文件(参数-b)、man说明文件(参数-m) 和源代码文件(参数-s). 如果省略参数,则返回所有信息。和find相比,whereis查找的速度非常快,这是因为linux系统会将系统内的所有文件都记录在一个数据库文件中,当使用whereis和locate时,会从数据库中查找数据,而不是像fin...
2)格式: file 文件名 在Linux中有一个非常重要的观点:Linux下一切皆文件。 举例: file ~/.bashrc 为ASCII 编码的text类型 file ~/.vimrc 为UTF-8 Unicode 编码的text类型 file ~/Pictures/* 如图形文件JPEG/PNG/BMP格式 file ~/100ask/ 为directory表明这是一个目录 file /bin/pwd 出现 ELF 64-bit LS...
这个数据库中含有本地所有文件信息。Linux系统自动创建这个数据库,并且每天自动更新一次,因此,我们在用whereis和locate 查找文件时,有时会找到已经被删除的数据,或者刚刚建立文件,却无法查找到,原因就是因为数据库文件没有被更新。为了避免这种情况,可以在使用locate之前,先使用updatedb命令,手动更新数据库。整个locate工作...
17 .ssh/ drwxrwxr-x 4 vagrant vagrant 4.0K Sep 26 2016 .vim/ -rw-rw-r-- 1 vagrant vagrant 15K Apr 25 10:27 .viminfo -rw-rw-r-- 1 vagrant vagrant 6.1K Oct 9 2016 .vimrc [vagrant~] ]$grep -aE "d.?f" .bash* .bash_history:vim default .bash_history:ps -df .bashrc:# ...
system vimrc file: "/etc/vimrc" user vimrc file: "$HOME/.vimrc" user exrc file: "$HOME/.exrc" fall-back for $VIM: "/etc" f-b for $VIMRUNTIME: "/usr/share/vim/vim73" Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H -I/usr/local/include -O2 -g -pipe -Wall -fexcept...
They are use mainly for storing application settings and configuration data, or for data that shouldn’t be as easily accessible as a plain file. Some common dot-files are the so-called RC files, named afterruncomfiles, of which.vimrcand.bash_profile(.bashrcon Linux etc.) are a few exa...
I am following the Peepcode screencasts to learn vim. The presenter mentions about the -N mode but doesn't elaborate it much and says that it should be the default mode. My questions: What is the -N mode? Should I always use it? If yes, how do I configure it in the .vimrc?
file ~/.vimrc 为UTF-8 Unicode 编码的text类型 file ~/Pictures/* 如图形文件JPEG/PNG/BMP 格式 file ~/Project/ 为directory表明这是一个目录 file /bin/pwd 出现 ELF 64-bit LSB executable, 即为ELF格式的可执行文件 file /dev/* 出现character special(字符设备文件)、block special(块设备文件)等 ...
1. whereis 命令 搜索命令所在路径及帮助文档所在位置 选项 -b: 只查找可执行文件 -m: 之查找帮助文件 2. which 命令 搜索命令所在位置及别名 3. 引申 whatis 查询一个命令执行什么功能 二、文件搜索命令locate 1. 简介 locate(locate) 命令用来查找文件或目录。 locate命令要比find -name快得多,原因在于它不...