tclsh(1) | Tcl Applications | tclsh(1) |
tclsh - 包含 Tcl 直譯器的簡單的 shell
tclsh ?fileName arg arg ...?
Tclsh 是一個 shell 類應用程式,從它的標準輸入或一個檔案讀 Tcl 命令並對其求值(evaluate)。 如果你不加引數的呼叫,則它互動式的執行,從標準輸入讀 Tcl 命令並向標準輸出列印命令結果和出錯資訊。它一直執行直到呼叫 exit 命令或在它的標準輸入上讀到檔案結束。如果在使用者的主(home)目錄裡存在一個檔案 .tclshrc (或在 Windows 平臺上的 tclshrc.tcl),在從標準輸入讀第一條命令之前,tclsh 把這個檔案作為一個 Tcl 指令碼來求值。
如果加引數呼叫 tclsh 則第一個引數是指令碼檔案的名字而任何額外的引數作為給指令碼使用的變數(見後)。 tclsh 將從指名的檔案中讀 Tcl 命令而不是從標準輸入讀取;當到達檔案結束時 tclsh 將退出。在這種情況下不自動的對 .tclshrc 求值,如果需要的話,指令碼檔案總是可以 source(包含)它。
如果你建立的 Tcl 指令碼檔案的第一行是
#!/usr/local/bin/tclsh
一個更好的途徑是用下面三行來開始你的指令碼檔案:
#!/bin/sh # the next line restarts using tclsh \ exec tclsh "$0" "$@"
You should note that it is also common practise to install tclsh with its version number as part of the name. This has the advantage of allowing multiple versions of Tcl to exist on the same system at once, but also the disadvantage of making it harder to write scripts that start up uniformly across different versions of Tcl.
Tclsh 設定了下列 Tcl 變數:
當互動式的呼叫 tclsh 時,它通常為每條命令提示“%”。你可以透過設定變數 tcl_prompt1 和 tcl_prompt2 來改變提示符。如果存在變數 tcl_prompt1 則它必須由一個輸出一個提示符的 Tcl 指令碼組成;tclsh 對 tcl_prompt1 中的指令碼求值而不是輸出一個提示符。變數 tcl_prompt2 以類似的方式用在鍵入了換行而當前命令卻不完整的時候;如果沒設定 tcl_prompt2 則對不完整的命令不給以提示符。
argument, interpreter, prompt, script file, shell
寒蟬退士
2001/06/20
http://cmpp.linuxforum.net
本頁面中文版由中文
man 手冊頁計劃提供。
中文 man
手冊頁計劃:https://github.com/man-pages-zh/manpages-zh
Tcl |