查看tclsh版本

Posted 王万林 Ben

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看tclsh版本相关的知识,希望对你有一定的参考价值。

查看tclsh版本

方法

在交互式tclsh中查看

╭─ben at Ben's MacBook Pro in ~/chef 2021/10/28 - 8:48:33
╰─○ tclsh

WARNING: This version of tcl is included in macOS for compatibility with legacy software. 
In future versions of macOS the tcl runtime will not be available by 
default, and may require you to install an additional package.

% puts $tcl_version 
8.5
% info patchlevel
8.5.9
%

在bash中,以非交互式的方式查看

╭─ben at Ben's MacBook Pro in ~/chef 2021/10/28 - 8:50:19
╰─○ echo 'puts [info patchlevel]'| tclsh
8.5.9
╭─ben at Ben's MacBook Pro in ~/chef 2021/10/28 - 8:50:29
╰─○ echo 'puts $tcl_version'| tclsh
8.5
╭─ben at Ben's MacBook Pro in ~/chef 2021/10/28 - 11:07:56
╰─○ tclsh <<< 'puts [info patchlevel]'
8.5.9
╭─ben at Ben's MacBook Pro in ~/chef 2021/10/28 - 11:08:14
╰─○ tclsh <<< 'puts $tcl_version'
8.5

以上是关于查看tclsh版本的主要内容,如果未能解决你的问题,请参考以下文章

TCLSH - modulefile中获取架构与OS发行版信息

linux中怎么查看mysql数据库版本

/bin/sh: 1: tclsh: not found

如何看mysql版本

mysql查看版本的四种方法

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段