- Bash Cookbook
- Ron Brash Ganesh Naik
- 182字
- 2021-07-23 19:17:42
Getting ready
Besides having a terminal open, several large text files are needed for this recipe. If you have some already, great; if not, install the following:
$ sudo apt-get install locate manpages manpages-posix
$ sudo updatedb
$ git clone https://github.com/PacktPublishing/Linux-Device-Drivers-Development.git Linux-Device-Drivers-Development # Another Packt title
$ mkdir -p ~/emptydir/makesure
If a file is not found using the locate command, the database might be simply out of date and needs to be re-ran. It is possible that updatedb is also not indexing partitions such as those contained on removable media (USB sticks), and the file may be present there instead of the regular system partitions.
In preparation for this recipe, be aware that two concepts were inadvertently introduced: git and manpages. Manpages are among one of the oldest forms of help documentation available in Linux, and git is a version control system that simplifies management, versioning, and distribution of files such as code. Knowing how to use either is certainly beneficial, but beyond the scope of this book. For more information about git, check out another Packt book: GIT Version Control Cookbook.
In preparation for this recipe, be aware that two concepts were inadvertently introduced: git and manpages. Manpages are among one of the oldest forms of help documentation available in Linux, and git is a version control system that simplifies management, versioning, and distribution of files such as code. Knowing how to use either is certainly beneficial, but beyond the scope of this book. For more information about git, check out another Packt book: GIT Version Control Cookbook.
推薦閱讀
- Spring 5.0 By Example
- Java開發入行真功夫
- Mastering C# Concurrency
- HTML5+CSS3網站設計基礎教程
- 利用Python進行數據分析
- HTML+CSS+JavaScript網頁設計從入門到精通 (清華社"視頻大講堂"大系·網絡開發視頻大講堂)
- JavaScript+jQuery網頁特效設計任務驅動教程
- Mastering Elixir
- Building Business Websites with Squarespace 7(Second Edition)
- UI設計基礎培訓教程(全彩版)
- Kotlin進階實戰
- Get Your Hands Dirty on Clean Architecture
- 深度學習的數學:使用Python語言
- PhoneGap 3.x Mobile Application Development Hotshot
- Java算法從菜鳥到達人