- Bash Cookbook
- Ron Brash Ganesh Naik
- 154字
- 2021-07-23 19:17:27
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "The full path is more concrete and hardcoded; the interpreter will try to use the complete path. For example, /bin/ls or /usr/local/bin/myBinary.."
A block of code is set as follows:
#!/bin/bash
AGE=17
if [ ${AGE} -lt 18 ]; then
echo "You must be 18 or older to see this movie"
fi
Any command-line input or output is written as follows:
rbrash@moon:~$ history
1002 ls
1003 cd ../
1004 pwd
1005 whoami
1006 history
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this.
Warnings or important notes appear like this.
Tips and tricks appear like this.
推薦閱讀
- Mastering NetBeans
- Learning C# by Developing Games with Unity 2020
- GraphQL學習指南
- C++ Builder 6.0下OpenGL編程技術
- 薛定宇教授大講堂(卷Ⅳ):MATLAB最優化計算
- Learning Python Design Patterns
- Python數據結構與算法(視頻教學版)
- Serverless computing in Azure with .NET
- 區塊鏈技術與應用
- 智能搜索和推薦系統:原理、算法與應用
- PyQt編程快速上手
- Tableau Desktop可視化高級應用
- Implementing Domain:Specific Languages with Xtext and Xtend
- Unreal Engine Game Development Cookbook
- GO語言編程從入門到實踐