ls 列出目录下的全部内容(包含文件,文件夹)

示例:

# ls -l /var/log/
total 1152
drwxr-xr-x. 2 root   root              4096 Jul 11 11:00 anaconda
drwx------. 2 root   root              4096 Jul 11 03:06 audit
-rw-------  1 root   root                 0 Dec 14 03:36 boot.log
-rw-------  1 root   root             15251 Dec 10 03:40 boot.log-20191210
-rw-------  1 root   root              7575 Dec 14 03:36 boot.log-20191214
-rw-------. 1 root   utmp             29952 Dec 18 19:31 btmp
drwxr-xr-x. 2 chrony chrony            4096 Apr 13  2018 chrony

 

cd  change directory 进入目录(文件夹)

示例:

# cd /var/log/
# pwd
/var/log

Linux cd命令

which 

which -- locate a program file in the user's path

示例:

appledeMacBook-Air:script apple$ which expect
/usr/local/bin/expect

 

whereis 

whereis -- locate programs

示例:

appledeMacBook-Air:script apple$ whereis expect
/usr/bin/expect

 

 

cat

cat /etc/hosts

cat命令是linux下的一个文本输出命令,通常是用于观看某个文件的内容的;
cat主要有三大功能:
1.一次显示整个文件。
$ cat   filename
2.从键盘创建一个文件。
$ cat  >  filename
只能创建新文件,不能编辑已有文件.
3.将几个文件合并为一个文件。
$cat   file1   file2  > file
cat具体命令格式为 : cat [-AbeEnstTuv] [--help] [--version] fileName
说明:把档案串连接后传到基本输出(屏幕或加 > fileName 到另一个档案)
参数:
-n 或 –number 由 1 开始对所有输出的行数编号
-b 或 –number-nonblank 和 -n 相似,只不过对于空白行不编号
-s 或 –squeeze-blank 当遇到有连续两行以上的空白行,就代换为一行的空白行
-v 或 –show-nonprinting
范例:
cat -n linuxfile1 > linuxfile2 把 linuxfile1 的档案内容加上行号后输入 linuxfile2 这个档案里
cat -b linuxfile1 linuxfile2 >> linuxfile3 把 linuxfile1 和 linuxfile2 的档案内容加上行号(空白行不加)之后将内容附加到linuxfile3 里。

curl

curl "http://172.17.244.114"    success

curl "http://127.0.0.1"      success

curl "http://localhost"     success

 

sh

 

yum

yum -y install lrzsz

yum -y install vim redhat-lsb

yum -y install curl wget 

ping 39.106.215.221

telnet 39.106.215.221 80

 

 

curl "http://172.17.244.114" > test.html

vim test.html 

sz test.html 

 

history

history [#] : 列出最近的#条命令,不带#时,为列出全部。

 

CentOS7.4搭建LAMP环境安装WordPress详细图解

Linux搭建lamp(Apache+PHP+Mysql环境)centos7.4版详细教程