1. 如何创建或编辑文件?
新建文件t1.txt:先按键盘ESC,切换到命令模式,再按i键。进行文件内容的输入
1111
2222
3333
1111
2222
3333
如要在文件中查找,则先按键盘ESC,再按/键,输入想要查找的内容,如输入3,如果想继续查找,则可以按n键,继续查找。
如要在文件中显示行号,则先按键盘ESC,再按:键,输入set number
如要保存文件,则先按键盘ESC,再按:键,输入wq。
2. 如何查找文件?
当需要确定文件具体位置时,如查找在整个系统中查找文件t1.txt,可执行命令:
find / -name t1.txt -print
root@linux:~# find / -name t1.txt -print
/home/test/t1.txt
find / -name t1.txt -print
3. 如何查找包含某个字符串的文件?
root@linux:/home/test# grep -rn "111" ./
./t1.txt:1:11111111
root@linux:/home/test# find / -name t1.txt -print | xargs grep -l "11"
/home/test/t1.txt
xargs是execute arguments的缩写,用于从标准输入中读取内容,并将此内容传递给后面的命令,并作为该命令的参数来执行。
4. 如何解压缩文件?
root@linux:/home# tar -zcvf test.gz /home/test/
tar: Removing leading `/' from member names
/home/test/
/home/test/t1.txt
z:gzip压缩文件;c:创建tar包;v:显示tar执行过程;f:指定压缩文件名
目的包名test.gz,源目录为/home/test/
root@linux:/home# ll
total 24
drwxr-xr-x 5 root root 4096 Jan 25 15:36 ./
drwxr-xr-x 26 root root 4096 Jan 25 14:49 ../
drwxr-xr-x 2 root root 4096 Jan 25 20:33 test/
-rw-r--r-- 1 root root 184 Jan 25 20:36 test.gz
解开压缩
tar -zxf network.gz
5. 如何从其他机器获取文件?
scp是secure copy的简写,用于远程拷贝文件。
命令格式:scp 源 目的
(1)从本地复制到远程
登录到本地服务器,将/home/test目录下所有的文件传输到IP为30.0.1.37的/home/develop目录,执行命令:
scp -r /home/test root@30.0.1.37:/home/develop
root@linux:/home/test# scp -r /home/test root@30.0.1.37:/home/develop
The authenticity of host '30.0.1.37 (30.0.1.37)' can't be established.
ECDSA key fingerprint is SHA256:THHVZ1IfwqJk0YpV7Qk/a+ZvMds4phRQJEbrJIJFagg.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '30.0.1.37' (ECDSA) to the list of known hosts.
root@30.0.1.37's password:
t1.txt 100% 10 15.8KB/s 00:00
t2.txt
登录到30.0.1.37上,就可以看到文件已经存在。
root@linux:/home/develop/test# ll
total 16
drwxr-xr-x 2 root root 4096 Jan 25 21:12 ./
drwxr-xr-x 3 root root 4096 Jan 25 21:12 ../
-rw-r--r-- 1 root root 10 Jan 2521:12 t1.txt
-rw-r--r-- 1 root root 12 Jan 2521:12 t2.txt
scp -r root@30.0.1.37:/home/develop /home/test
root@linux:/home/test# scp -r root@30.0.1.37:/home/develop /home/test/
root@30.0.1.37's password:
d1.txt 100% 14 14.0KB/s 00:00
d2.txt 100% 12 28.7KB/s 00:00
root@linux:/home/test/develop# ll
total 16
drwxr-xr-x 2 root root 4096 Jan 25 21:21 ./
drwxr-xr-x 3 root root 4096 Jan 25 21:21 ../
-rw-r--r-- 1 root root 14 Jan 25 21:21 d1.txt
-rw-r--r-- 1 root root 12 Jan 25 21:21 d2.txt
全部0条评论
快来发表一下你的评论吧 !