linux command file/type which/whereis】的更多相关文章

今天遇到几个命令,初见时感觉好像啊,不太能区分其具体功能和区别,因此特来记录一下. 1. file和type file: 查看文件类型 type: display information of command type 2. which和whereis which: 查看可执行文件和别名alias的位置.whereis -p whereis: 查看文件的位置,只搜索二进制文件.man说明文件和源代码文件 locate: 配合数据库查看位置,数据库大概每天更新一次.find -name的另一种写法…
command>file >& & 命令的最后一个&表示把该命令以后台的job的形式运行 一个命令的执行伴随着三种输入输出 标准输入(stdin):默认指向键盘的输入,可以通过标准输入重定向<,让标准输入指向文件输入 标准输出(stdout) :指命令产生的正常的输出,如echo aaa,标准输出默认指向终端显示器,可以通过输出重定向>,让标准输出重定向到文件 标准错误输出(stderr):指命令产生的错误信息的输出,如执行了不存在的命令t,标准错误输出也默…
centos 特殊权限 各种搜索命令 lsattr ,chattr,suid,sgid,sbit,file,type是否是内置命令,stat文件属性 ,whereis,locate,find,ln  内部命令和外部命令 第五节课 上半节课 特殊权限/属性 隐藏权限 lsattr chattr suid sgid sbit(stickbit) 下半节课 file  文件类型(file -i 查看文件的字符集类型,file -s 查看块设备文件的文件系统信息) type  是否是 内置命令 stat…
linux move file / folder bash command mv $ which mv $ man mv # mv [-f] source target/ target folder $ sudo mv -f mongodb-macos-x86_64-4.2.6.tgz /usr/local demo ➜ Desktop which mv /bin/mv ➜ Desktop man mv ➜ Desktop mv mongodb-macos-x86_64-4.2.6.tgz /u…
pwd - print name of current working directory. cd - change directory ls - list directory contents file-determine file type less-view file contents…
用途说明 type命令用来显示指定命令的类型.一个命令的类型可以是如下之一 alias 别名 keyword 关键字,Shell保留字 function 函数,Shell函数 builtin 内建命令,Shell内建命令 file 文件,磁盘文件,外部命令 unfound 没有找到 它是Linux系统的一种自省机制,知道了是那种类型,我们就可以针对性的获取帮助.比如内建命令可以用help命令来获取帮助,外部命令用man或者info来获取帮助. 常用参数 type命令的基本使用方式就是直接跟上命令…
Most of this note comes from the Beginning the Linux Command Line, Second Edition by Sander van Vugt The only reason why many administrators are using a graphical interface on Linux, is because it allows them to run many terminal windows simultaneous…
When you are using Linux command line frequently, using the history effectively can be a major productivity boost. In fact, once you have mastered the 15 examples that I’ve provided here, you’ll find using command line more enjoyable and fun. 1. Disp…
Notes on The Linux Command Line (by W. E. Shotts Jr.) edited by Gopher 感觉博客园是不是搞了什么CSS在里头--在博客园显示效果挺蛋疼的...这本书相当棒,建议一读 File, file systems and commands ls -a(all) -d(directory) -h(human-readable) less (show file content) FHS /bin: Contains binaries (pr…
Prerequisite: Linux Command Line(I): Beginner ================================ File I/O $ cat > a.txt #create a file 'a.txt' and appends things into it Type random stuff... # press Ctrl+d to exit editting $ cat a.txt Type random stuff... $ cat > a.t…