RH033学习笔记
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-13
on exists and is a file,the source file is moved to that filename,overwriting the file if the destination does not exist,the source file or directory is renamed with that name 14,Creating and Removing Files rm -i interactive rm -r recursive 目录 rm -f force touch -create empty file or update file timestamps 15,Creating and Removing Directories mkdir rmdir empty directory rm -r 包含内容 16,Using Nautilus gnome graphical filesystem browser can run in spatial(每个目录都开一个窗口) or browser(资源管理器样式) mode
$nautilus 17,Moving and Copying in Nuatilus Drag and Drop Left-button : move on same filesystem, copy on different filesystem Ctrl-Left-button : alwayls copy Alt-Left-button : Ask whether to copy,move or create symbolic link 18,Determineing File Content file [options] filename 19,Viewing an entire Text FIle cat [options] filename 多个文件会连载输出 cat -A 可以看到换行符 cat -b 带行号 20,Viewing Text Page by Page less filename arrows / pgUp /pgDown /text search for text n -next match v 进入编辑模式 =============================================================================== Unit 4 - The bash SHell 1,bash introduction 2,bash heritage 3,Command Line Shortcuts: File Globbing 4,Command Line Shortcuts: The Tab Key 5,Command Line Shortcuts: history 6,Command Line Shortcuts: Tilde(~) 7,Command Line Shortcuts: Variable and Curly braces({}) 8,Command Line Shortcuts: Command and Math 9,Command Line Shortcuts: Backslash() 10,Command Line Shortcuts: Quotes 11,History Tricks 12,Command Editing Tricks:Editing Modes 13,gonme - terminal 1,bash introduction "Bourne Again Shell" 用户和kernel之间的桥梁 2,bash heritage unix分为两派:Sys V (sh) BSD(csh->ksh->tchsh->zsh) 3,Command Line Shortcuts: File Globbing * 0个或多个字符 ? 1个字符 []字符范围 [^]非字符范围 4,Command Line Shortcuts: The Tab Key 补齐未输入完全的指令 tou->touch pw tab一次不会补齐,再tab一次,显示所有以tab开头的指令 文件名字也可以补齐 5,Command Line Shortcuts: history !指令编号 ^2^1 把上个指令中的2改成1 用在ping中比较合适 6,Command Line Shortcuts: Tilde(~) 回到home目录 7,Command Line Shortcuts: Variable and Curly braces({})
echo $HOME touch {a,b} ->a,b touch a{a,b} ->aa,ab touch {a,b}.{1,2} -> a.1,a,2,b.1,b.2 8,Command Line Shortcuts: Command and Math `` 反引号取指令结果 echo "Hostname: `hostname`" 或者 echo "Hostname:$(hostname)" $[] 数学运算 echo $[$a $c]建立加空格 9,Command Line Shortcuts: Backslash() 转义字符 echo Your cost is $5.00 将放到指令,代表指令接到下一行(一行没有完成指令) 10,Command Line Shortcuts: Quotes Single quotes('') Double quotes(") except:$ ` ! echo ** 00000 ** 11,History Tricks up and down arrow CTRL R search for a history command recall last argument from previous command ESC放开加. /ALT不放加. ping适用 先ping后telnet 12,Command Editing Tricks:Editing Modes By default,bash uses emacs-style set -o vi 变成vi模式 set o vi 变回来 set -o 可见模式 13,gonme - terminal Ctrl Shift t open a new tab Ctrl-pgUP/pgDn Next/Prev tab Alt -号码 change to N号 |
||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: CentOS5 mysql php的配置下一篇: Linux 服务器下多网卡的负载均衡
关于RH033学习笔记的所有评论