Home | 簡體中文 | 繁體中文 | 雜文 | 知乎專欄 | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 視頻教程 | 打賞(Donations) | About

5.3. test 命令

	
test -x $HAPROXY || exit 0
test -f "$CONFIG" || exit 0
	
	

5.3.1. 判斷目錄

			
test -d /path/to/directory || mkdir -p /path/to/directory