在根目錄下 查詢以acunetix開頭的檔案或資料夾並刪除
find / -name acunetix* |
xargs
rm -rf
單引號裡的任何字元都會原樣輸出,單引號字串中的變數是無效的,雙引號中的變數引用可以輸出
your_name=
"runoob"
greeting_3=
'hello, $ !'
echo
$greeting_3
greeting_4=
"hello, $ !"
echo
$greeting_4
--#
read 和$1的區別
read是讀取使用者輸入
$1是輸入執行的 命令的字串 的索引為1的引數
\r 回車
\n 換行
\c 不換行
%s 直接輸出,無格式
%n 會輸出格式
#判斷是否相等
數值 用eq
字串 用=
列出使用80埠的檔案(linux中一切皆檔案),並輸出每行的第一項和第二項
lsof -i:80|
awk''
wc testfile # testfile檔案的統計資訊
3 92 598 testfile # testfile檔案的行數為3、單詞數92、位元組數598
wc -l testfile # 只顯示行數
3
輸出檔案1.txt
中包含word
這個詞的這行內容
grep -n 'word' 1.txt
輸出當前路徑下所有包含word
這個詞的這行內容和檔名
grep -nr 'word' 1.txt
Linux好用的命令
1 遠端拷貝scp scp r user host1 file1 user host2 file2例如 scp r demo root 192.1.111.1 usr test 意思是把當前demo資料夾拷貝到192.1.111.1這台機的 usr test 目錄下 2 遠端登入ssh ssh us...
好用的linux命令
1.vim 跳轉跳到檔案頂部 1 或者gg 跳到檔案尾部 跳到指定行 n n表示行號 插入在當前位置前面插入 i 在當前位置後面插入 a 在當前行尾部插入 a 另起一行輸入 o 複製貼上 複製當前行 yy 複製當前游標所在的單詞 yw 複製游標到行尾 y 複製游標到行首 y p 貼上 刪除刪除當前行...
linux好用的開發命令
md5sum 檔案 例如 判斷.tmp test.txt md5sum tmp test.txt會生成檔案資訊,如果別人使用的是你的檔案,就可以判斷你們的檔案是不是一致了 掛載到其它裝置的 home x路徑下 mount t nfs o nolock 192.168.17.206 home user...