vim anaconda-ks.cfg
cd /proc/
lsps aux|grep vim
cd /proc/53170
lscd fd
ll
覆蓋追加set -c 禁止覆蓋 set +c 允許覆蓋
stdout重定向ll /dev/null 垃圾箱2> stderr重定向
&> 所有輸出
| file 強制覆蓋
ls /boot /dir > /root/all2.log 2>&1 把錯的也放到裡面
ls /boot /dir 2> /root/all2.log 1>&2
(cal 08 2008;cal 08 2018) > /data/cal.txt
bc < f1.txt > bc.log
cat 把輸入的輸出出來
* tr命令:轉換和刪除字元
tr 'a-z' 'a-z'
tr 'a-z' 'a-z' < /etc/issue > f1.txt
cat f1.txt
tr -d 'abc'
abfecadc
tr -dc '0-9'
tr -s 'ab' 連續字元壓縮
aabb
whowho > who.log
tr -s " " < who.log
tr -s " " + < who.log
tr '\n' ' ' < f2.txt
linux 檔案重定向
nohup 所屬包 coreutils 功能說明 該命令可以讓使用者在退出系統之後,繼續於後台中執行程式。注意nohup命令不會自動將程式放到後台執行,因此需要配合shell的特殊字元 使用,放在一行指令的最後,如 nohup command 要想明白檔案重定向,首先需要理解linux中的所有程序,...
C語言 檔案操作3 檔案重定向與掃瞄
檔案重定向和掃瞄 define crt secure no warnings include include fprintf檔案重定向 intredirectmy 檔案開啟成功 fprintf pf,舞榭歌台風流總被雨打風吹去 n s str 關閉檔案指標 if pf null return err...
0998 檔案描述符及重定向
1 介紹 檔案描述符是與檔案輸入 輸出相關的整數。它們用來跟蹤已開啟的檔案。最常見的檔案描述符是stdin stdout和stderr。我們甚至可以將某個檔案描述符的內容重定向到別乙個檔案描述符中。下面給出一些對檔案描述符進行操作和重定向的例子。在編寫指令碼時會頻繁使用標準輸入 標準輸出 標準錯誤。...