Changes between Version 10 and Version 11 of YM_Course_2009/Lab4
- Timestamp:
- Jul 4, 2009, 11:35:04 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
YM_Course_2009/Lab4
v10 v11 157 157 158 158 }}} 159 160 = 3. test 與 Shell Script = 161 162 * 在學習寫 Shell Script 之前,可以先學著用 test 指令來確認自己寫的判斷式正不正確。 163 {{{ 164 ubuntu@ubuntu:~$ test -e file 165 ubuntu@ubuntu:~$ echo $? 166 1 167 ubuntu@ubuntu:~$ test -e file0 168 ubuntu@ubuntu:~$ echo $? 169 1 170 }}}