linux whatis與whatis database 使用及查詢方法(man使用執行個體)_linux shell

來源:互聯網
上載者:User

通過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命令尋找協助資訊的一個過程,有問題,首先分析協助是個不錯的選擇。

作者:chengmo QQ:8292669

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.