欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

linux whatis與whatis database 使用及查詢方法(man使用實例)

 更新時間:2015年10月14日 20:55:52   投稿:mdxy-dxy  
在學(xué)習(xí)man命令時候,估計很多朋友都發(fā)現(xiàn)有man –f ,man –k 參數(shù),可以查出很多數(shù)據(jù)。這些有的與man手冊頁相同,有些不是屬于手冊頁的。它們數(shù)據(jù)怎么收集來的,并且whatis是怎么樣工作的

通過man查找?guī)椭^程:

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

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

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

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

收獲:whatis數(shù)據(jù)庫,并且有makewhatis創(chuàng)建,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 從手冊頁配置的路徑以及領(lǐng)域范圍,搜集所有手冊頁索引信息,每個手冊頁在數(shù)據(jù)庫加入一行,這行會包括手冊頁里面name,以及簡單描述。

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

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

#告訴路徑我們看看內(nèi)容


[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 “關(guān)鍵詞“ /var/cache/man/whatis

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

[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數(shù)據(jù)庫就是一個文本文件記錄手冊頁的索引信息

 

whatis數(shù)據(jù)庫是什么時候創(chuàng)建的呢?

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

#發(fā)現(xiàn)創(chuàng)建時間是凌晨4點左右,看了這個是系統(tǒng)創(chuàng)建的,那么少不了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命令查找?guī)椭畔⒌囊粋€過程,有問題,首先分析幫助是個不錯的選擇。

作者:chengmo QQ:8292669

相關(guān)文章

  • shell實現(xiàn)FizzBuzzWhizz問題示例(拉勾網(wǎng)面試題)

    shell實現(xiàn)FizzBuzzWhizz問題示例(拉勾網(wǎng)面試題)

    這篇文章主要介紹了shell實現(xiàn)FizzBuzzWhizz問題示例(拉勾網(wǎng)面試題),需要的朋友可以參考下
    2014-05-05
  • 編寫shell腳本將VPS上的數(shù)據(jù)備份到Dropbox網(wǎng)盤的方法

    編寫shell腳本將VPS上的數(shù)據(jù)備份到Dropbox網(wǎng)盤的方法

    這篇文章主要介紹了編寫shell腳本將VPS上的數(shù)據(jù)備份到Dropbox網(wǎng)盤的方法,注意Dropbox在國內(nèi)訪問的網(wǎng)絡(luò)相關(guān)問題,需要的朋友可以參考下
    2015-07-07
  • Shell命令解析之set命令的用法和參數(shù)詳解

    Shell命令解析之set命令的用法和參數(shù)詳解

    set 命令作用主要是顯示系統(tǒng)中已經(jīng)存在的 shell 變量,以及設(shè)置 shell 變量的新變量值,這篇文章主要介紹了Shell命令解析之set命令的用法和參數(shù)詳解,需要的朋友可以參考下
    2023-10-10
  • shell腳本讀取命令行參數(shù)的實現(xiàn)

    shell腳本讀取命令行參數(shù)的實現(xiàn)

    本文主要介紹了shell腳本讀取命令行參數(shù)的實現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2021-07-07
  • ping發(fā)現(xiàn)掉包報警的shell代碼

    ping發(fā)現(xiàn)掉包報警的shell代碼

    一般用來判斷服務(wù)器是否穩(wěn)定,加入crontab中讓其10分鐘跑一次,需要的朋友可以參考下
    2013-01-01
  • Shell中printf和test命令的實際應(yīng)用詳解

    Shell中printf和test命令的實際應(yīng)用詳解

    本文主要介紹了Shell中printf和test命令的實際應(yīng)用詳解,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2023-09-09
  • shell中set設(shè)置-e和 -x的用法

    shell中set設(shè)置-e和 -x的用法

    本文主要介紹了shell中set設(shè)置-e和 -x的用法,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2023-06-06
  • linux bash中too many arguments問題的解決方法

    linux bash中too many arguments問題的解決方法

    本文介紹下在linux bash shell中出現(xiàn)too many arguments問題的解決辦法,有需要的朋友參考學(xué)習(xí)下
    2013-11-11
  • shell中如何使用date獲取時間戳

    shell中如何使用date獲取時間戳

    這篇文章主要介紹了shell中如何使用date獲取時間戳,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2023-09-09
  • 每天學(xué)一個 Linux 命令之more命令

    每天學(xué)一個 Linux 命令之more命令

    more命令,功能類似 cat ,more會以一頁一頁的顯示方便使用者逐頁閱讀,而最基本的指令就是按空白鍵(space)就往下一頁顯示,按 b 鍵就會往回(back)一頁顯示,而且還有搜尋字串的功能
    2016-12-12

最新評論