linux 檔案管理 3 檔案萬用字元

2022-06-23 20:39:13 字數 1024 閱讀 6522

ll /proc/meminfo 大小為0,不是硬碟檔案。在記憶體裡,只不過以檔案的方式顯示出來給我們看。

ls *.conf

ls f??.conf

ls ~

ls ~mage

ls ~- 前乙個工作目錄

ls ~+ 當前

ls f?[0-9].*

touch a.txt

ll a[0-9].txt

ls b[acz].txt

ls b[^acz].txt 除掉acz

ls b[[:lower:]].txt            //表示乙個

ls .*

ls .[^.]* -d 只顯示當前目錄的名稱,不進入目錄

ls -d .*

ls -ai "[^.]*"

centos7關閉防火牆

systemctl stop firewalld

systemctl disable firewalld

centos6關閉防火牆

systemctl stop firewalld service iptables stop

chkconfig iptables off

ssh 橋接分配的ip位址 -p 12365

screen -s help 開啟乙個會話

screen -x 加入

ls /etc/[0-9]*[^0-9] -d

ssh ip位址

passwd 改口令

exit 退出會話

screen -ls 顯示會話

screen -x centos7 加入會話

screen -x 3666

touch `date +%f`.log

touch -t 201910200830.20 1.txt

ll f[0-9] f10

3 檔案管理命令

檢視檔案 cat cat n 行號 e 對於linux 文字的行結束符號 windows 是 和回車 tac 倒過來看 more less tail heads tail f filename 動態看 末尾內容 文字處理 cut join,awk,sed cut d 分割符號 delimiter f...

Linux學習(3) 檔案管理命令

複製和移動檔案 cp copy cp src dest r,r 遞迴複製乙個目錄及目錄下的檔案。i 互動式 f 強制 p 保留原來的屬主 陣列 許可權 時間戳。a 保留檔案原來的所有屬性。archive。歸檔複製。常用於備份。cp etc tmp 複製三個檔案。cp file2 file3 複製乙個...

python 3 檔案管理

import os,tempfile,glob,shutil 建立目錄 os.mkdir r home rain test filedir 建立目錄以及所有path中包含的上級目錄 os.makedirs r home rain test test filedir 切換當前工作目錄 os.chdir...