标签:roo 连接 cell 调整 环境变量 comm 地址 rom .com
简述:
在学习Linux系统时,必不可少的要接触命令的使用方法和格式,下面通过详细介绍ifconfig、echo、tty、startx、export、pwd、history、shutdown、poweroff、reboot、hwclock、date等Linux常用命令的使用方法,来了解Linux系统上命令的使用格式。
正文:
Linux系统命令使用格式:
#COMMAND [OPTIONS...] [ARGUMENTS...]
COMMAND :命令;一个可执行的二进制程序文件
OPTIONS:参数;指定命令运行的特性,通常由两种表现形式:短选项-d,长选项--help。
ARGUMENTS:对象;命令作用的对象,不同命令的作用对象不同,可以是文件,目录,硬件设备等。
注意:
命令介绍:
ifconfig
描述:ifconfig 用于配置常驻内核的网络接口。它用于在引导成功时设定网络接口。此后,只在需要调试及系统调整时才使用。如没有给出参数, ifconfig 显示当前有效接口的状态。如给定单个 接口作为参数,它只显示给出的那个接口的状态; 如果给出一个 -a参数,它会显示所有接口的状态,包括那些停用的接口。否则就对一个接口进行配置。
格式:
ifconfig [接口]
ifconfig 接口 [aftype] options | address ...
常用参数:
[root@centos7 ~]# echo hello word
hello word
[root@centos7 ~]# echo -e "hello\nword"
hello
word
[root@centos7 ~]# echo $SHELL
/bin/bash
注意:当echo $?返回值是0时,则上一个命令执行成功,其余任何数值均为不成功。
[root@centos7 ~]# tty
/dev/pts/3
[root@centos7 ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
[root@centos7 ~]# export PATH="$PATH:/tmp"
[root@centos7 ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/tmp
[root@centos7 ~]# pwd
/root
[root@centos7 ~]# history 5
58 man cat
59 man history
60 history 1
61 history 20
62 history 5
[root@centos7 ~]# history -c
[root@centos7 ~]# history
1 history
[root@centos7 ~]# history
1 history
2 echo "hello word"
3 man history
4 history
[root@centos7 ~]# !2
echo "hello word"
hello word
[root@centos7 ~]# shutdown -k
Shutdown scheduled for 日 2018-07-08 21:49:37 CST, use ‘shutdown -c‘ to cancel.
[root@centos7 ~]#
Broadcast message from root@centos7 (Sun 2018-07-08 21:48:37 CST):
The system is going down for power-off at Sun 2018-07-08 21:49:37 CST!
[root@centos7 ~]# shutdown -h +20
Shutdown scheduled for 日 2018-07-08 22:13:08 CST, use ‘shutdown -c‘ to cancel.
[root@centos7 ~]# shutdown -c
Broadcast message from root@centos7 (Sun 2018-07-08 21:53:26 CST):
The system shutdown has been cancelled at Sun 2018-07-08 21:54:26 CST!
[root@centos7 ~]# hwclock
2018年07月08日 星期日 22时07分36秒 -0.457509 秒
[root@centos7 ~]# date +"%Y-%m-%d"
2018-07-08
[root@centos7 ~]# date -d "1 day ago" +"%Y-%m-%d"
2018-07-07
[root@centos7 ~]# date "+%Y-%m-%d %H:%M:%S"
2018-07-08 23:34:51
[root@centos7 ~]# date -s "19960601 9:00:00"
Sat Jun 1 09:00:00 CST 1996
标签:roo 连接 cell 调整 环境变量 comm 地址 rom .com
原文地址:https://www.cnblogs.com/delian/p/9281883.html