91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用linux whatis與whatis database

發布時間:2021-09-23 17:43:31 來源:億速云 閱讀:136 作者:iii 欄目:開發技術

這篇文章主要講解了“如何使用linux whatis與whatis database”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“如何使用linux whatis與whatis database”吧!

通過man查找幫助過程:

[chengmo@centos5 ~]$ man -h
...
 f:same as whatis(1)
...

#覺得比較奇怪,whatis是什么呢?

[chengmo@centos5 ~]$ man whatis
#查詢得到是:
#whatis - search the whatis database for complete words.
#它是查詢whatis數據庫的工具

#The whatis database is created using the command /usr/sbin/makewhatis.
#里面還說,whatis數據庫 是通過/usr/bin/makewhatis建立的

收獲:whatis數據庫,并且有makewhatis創建,whatis腳本是用作查詢的
 

makewhatis是怎么樣工作的呢?

[chengmo@centos5 ~]$ man makewhatis

#得到:

makewhatis reads all the manual pages contained in the given sections of manpath or the preformatted pages con-tained in the given sections of catpath.  For each page, it writes a line in the  whatis  database;  each  line consists  of  the  name  of the page and a short description, separated by a dash. The description is extracted  using the content of the NAME section of the manual page.

#大概意思是:makewhatis 從手冊頁配置的路徑以及領域范圍,搜集所有手冊頁索引信息,每個手冊頁在數據庫加入一行,這行會包括手冊頁里面name,以及簡單描述。

收獲:知道這個數據庫是建立是索引,并且每個數據庫寫入一行(a line) ,會不會這個數據庫就是文本文件呢?現在到這里,我們不知道數據庫保存地方,也不知道它結構,只有看看whatis命令,看它是不是有源碼信息
怎么得到whatis程序源碼?

[chengmo@centos5 ~]$ type whatis
whatis is /usr/bin/whatis

#告訴路徑我們看看內容


[chengmo@centos5 ~]$ vi /usr/bin/whatis

  1 #!/bin/sh
  2 #
  3 # apropos -- search the whatis database for keywords.
  4 # whatis  -- idem, but match only commands (as whole words).

……

#它是個sh腳本,

#得到:

#grep “關鍵詞“ /var/cache/man/whatis

#它實際在查找這個文件,/var/cache/man/whatis就是上面說的whatis 數據庫

[chengmo@centos5 ~]$ head /var/cache/man/whatis
$notes_name [Module::Build::Notes] (3pm)  - Configuration for $module_name
*_unlocked [unlocked_stdio] (3)  - non-locking stdio functions

#whatis數據庫就是一個文本文件記錄手冊頁的索引信息

whatis數據庫是什么時候創建的呢?

[chengmo@centos5 ~]$ ls -al /var/cache/man/whatis
-rw-r--r-- 1 root root 1057156 10-27 04:06 /var/cache/man/whatis

#發現創建時間是凌晨4點左右,看了這個是系統創建的,那么少不了cron懷疑了

[chengmo@centos5 ~]$ cat /etc/crontab  
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/

# run-parts
01 * * * * root run-parts /etc/cron.hourly
02 4 * * * root run-parts /etc/cron.daily
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly

有run-parts腳本運行/etc/cron.daily目錄下面的文件

[chengmo@centos5 ~]$ cd /etc/cron.daily/

[chengmo@centos5 cron.daily]$ cat makewhatis.cron
#!/bin/bash

LOCKFILE=/var/lock/makewhatis.lock

makewhatis -u -w

……

找到了這個是由這個腳本運行的

以上是通過man命令查找幫助信息的一個過程,有問題,首先分析幫助是個不錯的選擇。

感謝各位的閱讀,以上就是“如何使用linux whatis與whatis database”的內容了,經過本文的學習后,相信大家對如何使用linux whatis與whatis database這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

望江县| 兖州市| 横峰县| 邵武市| 福建省| 东乡族自治县| 巴青县| 琼中| 和政县| 通化市| 永善县| 遂溪县| 乳源| 普陀区| 德庆县| 阿拉尔市| 固阳县| 南陵县| 大埔县| 洛浦县| 彰化县| 专栏| 新和县| 镇巴县| 札达县| 陕西省| 宜都市| 扬州市| 页游| 城口县| 中山市| 五常市| 乐亭县| 措美县| 肇东市| 镇沅| 华容县| 嵊州市| 资阳市| 尚志市| 开平市|