在 HP-UX 中有幾個好用的指令能夠幫助你事半功倍。
find | 搜尋檔案 |
whereis | 顯示Source、二進位、man page 檔案的路徑 |
which | 依 PATH 環境變數,顯示執行檔的路徑 |
file | 顯示檔案類型 |
strings | 顯示二進位檔中的 ACSII 字元 |
machinfo | 顯示硬體資訊 |
olrad | OL* 指令 |
find
----
- 搜尋系統中使用者 ABC 的檔案
# find / -user ABC
- 搜尋 /tmp 中超過七天未存取的檔案
# find /tmp -type f -atime +7
- 搜尋檔名 XYZ,並刪除
# find / -name XYZ -exec rm -i {} ;
- 搜尋超過 10MB 大小的檔案
# find / -size +10000000c -type f ← -size Xc,c 表示以 bytes 為單位
-------
- 搜尋二進位檔
# where -b passwd
- 搜尋 Source 檔為 -s
- 搜尋 man page 為 -m
------
- 搜尋 passwd 執行檔位置
# which passwd
---
- 顯示 passwd 檔案類型
# file /etc/passwd
-------
- 顯示二進位檔中的 ASCII 字元
# strings /var/adm/wtmp
---------
- -v 顯示 CPU 詳細資訊
- -m 只顯示 RAM 資訊
-----
- 顯示哪些 Slot 支援 OL* 功能
- -q 顯示 Slot 詳細資訊
沒有留言:
張貼留言