close
Warning:
Can't synchronize with repository "(default)" (Unsupported version control system "svn": /usr/lib/python2.7/dist-packages/libsvn/_repos.so: failed to map segment from shared object: Cannot allocate memory). Look in the Trac log for more information.
- Timestamp:
-
May 19, 2009, 6:17:56 PM (16 years ago)
- Author:
-
waue
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
v3
|
v4
|
|
| 1 | | * nutchez-dev |
| 2 | | * comeon dialog 如何存變數? |
| | 1 | = nutchez-dev 開發 = |
| | 2 | * comeon dialog 如何存變數等問題? |
| | 3 | {{{ |
| | 4 | 請看 /usr/share/doc/dialog/example 的範例 |
| | 5 | }}} |
| | 6 | |
| | 7 | * dialog 常回傳 255 ? |
| | 8 | {{{ |
| | 9 | 注意shell裡面 |
| | 10 | dialog --msgbox $MSG 0 0 2>/tmp/file |
| | 11 | 如此寫容易錯,應該改成 |
| | 12 | dialog --msgbox "$MSG" 0 0 2>/tmp/file |
| | 13 | }}} |
| | 14 | |
| | 15 | * editbox 總是無法載入檔案 |
| | 16 | {{{ |
| | 17 | 注意shell裡面 |
| | 18 | dialog --editbox "$file" 0 0 2>"$file" |
| | 19 | 則每次載入檔案都是空的,應該改成 |
| | 20 | dialog --editbox "$file" 0 0 2>"$file1" |
| | 21 | }}} |