命令的基本格式为: 命令 [选项] [参数]
ifconfig 命令 ifconfig – configure a network interface 配置网络接口 其中inet addr 为本地ip地址。目前阶段命令仅限于查看本地ip地址。
echo 命令 echo – display a line of text 显示一行文本。echo 为回声的,如同蝙蝠、海豚的回声定位系统,遇到什么反射什么。例如 遇到字符串,回显字符串。遇到环境变量,显示变量值。
welcome to beijing 为字符串,同样回声为字符串本身。 $SHELL为环境变量 $HISTSIZE指SHELL进程中保留在内存中历史进程的数。 $HISTCONTROL 历史命令控制。
echo 命令选项
-E disable interpretation of backslash escapes (default)
让转义符失效
-e enable interpretation of backslash escapes
让转义符生效
各种常用转移符有
\n new line 换行
\t horizontal tab 横向制表符 转义符的一种
\v vertical tab 竖向制表符 转义符的一种
\b backspace 退格删除前一个字母
tty命令 Print the file name of the terminal connected to standard input.显示连接到标准输入的终端的文件名
pts表示目前在伪终端
pwd命令 print name of current/working directory 显示当前工作目录
history命令 Display or manipulate the history list 显示或操作历史列表
history -d 80 删除 第八十个命令
( history- d offset :删除指定命令历史 offset【偏移量】后面的数字就是偏移的值history -d 80 5 删除 从第八十条命开始的5条命令)
-c清空命令历史。只是清除内存中的,文件中的没有清除.
-r把文件中的历史命令追加到内存
-w把内存中历史命令追加文件中
shutdown poweroff reboot 为关机 重启命令。只有在root账户下才能执行
-h:halt
-r:reboot
-c:cancel 取消关机
系统将在,123分钟后重启。
date命令 print or set the system date and time显示或者设置系统的日期及时间。查看系统时钟
clock命令等同于hwclock命令 查看硬件时钟
hwclock – query and set the hardware clock (RTC) 查询并看设置硬件时钟
硬件时钟跟软件时钟有差异
-s, –hctosys
Set the System Time from the Hardware Clock. 把系统时钟调整为硬件时钟。
-w,–systohc
Set the Hardware Clock to the current System Time.。把硬件时间调整为系统时钟
本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/101865