####1. whoami--查看當前登錄的用戶名 book@100ask:~/linux$ whoami book ####2. echo--列印命令,配合'>'或者'>>'使用 echo 列印信息 //輸出信息到終端 echo 列印信息 > 文件名 //先清空文件裡面的內容,然後將輸出信息保存到 ...
1. whoami--查看當前登錄的用戶名
book@100ask:~/linux$ whoami
book
2. echo--列印命令,配合'>'或者'>>'使用
echo 列印信息 //輸出信息到終端
echo 列印信息 > 文件名 //先清空文件裡面的內容,然後將輸出信息保存到文件中
echo 列印信息 > 文件名 //在文件末尾追加信息
============================================================================
book@100ask:~/linux$ echo hello
hello
book@100ask:~/linux$ touch hello.txt
book@100ask:~/linux$ echo hello > hello.txt
book@100ask:~/linux$ cat hello.txt
hello
book@100ask:~/linux$ echo hello1 > hello.txt
book@100ask:~/linux$ cat hello.txt
hello1
book@100ask:~/linux$ echo hello2 >> hello.txt
book@100ask:~/linux$ cat hello.txt
hello1
hello2
3. find--查找命令
find 路徑 -name 文件名
find /usr/include -name stdio.h
===========================================================================
/usr/include/x86_64-linux-gnu/bits/stdio.h
/usr/include/stdio.h
/usr/include/c++/7/tr1/stdio.h
4. grep--在文件中搜索字元串信息
grep -Rn "搜索信息" 文件名
===========================================================================
book@100ask:~/linux$ cat hello.txt -n
1 hello1
2 hello2
3 hello world
4 132456
book@100ask:~/linux$ grep -Rn "456" ./hello.txt
4:132456
book@100ask:~/linux$ grep -Rn "hello1" ./hello.txt
1:hello1
5. tar--打包命令
打包:
tar -jcvf 壓縮包名.tar.bz2 目錄或文件 //把目錄和文件打包成bz2格式
tar -zcvf 壓縮包名.tar.gz 目錄或文件 //把目錄和文件打包成gz格式
解包:
tar -xvf 壓縮包名.tar.bz2/壓縮包名.tar.gz
註意:
windows的rar格式壓縮包,linux系統需要安裝兩個命令,步驟如下:
sudo apt-get install unrar //首先利用網路在ubuntu系統安裝rar格式的解壓命令
unrar x 壓縮包名.rar //對rar壓縮包進行解包
uname--查看Linux系統版本信息
book@100ask:~/linux/c01$ uname -a
Linux 100ask 5.4.0-125-generic #141~18.04.1-Ubuntu SMP Thu Aug 11 20:15:56 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux