example15.08.csh.tsh

来自「UNIX[1].shell范例精解(第4版)_code」· TSH 代码 · 共 5 行

TSH
5
字号
set n = 5; set name = "Tom"if ( $n =< 5 ) then          # Should be: if ( $n <= 5 ) then if ( $n == 5 && <  6 ) then  # Should be: if ( $n == 5 && $n < 6)if ( $name == [Tt]om ) then  # Should be: if ($name =~ [Tt]om ) 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?