⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cvteol.tcl

📁 tcl是工具命令语言
💻 TCL
字号:
# cvtEOL.tcl --## This file contains a script to parse a Tcl/Tk distribution and# convert the EOL from \n to \r on all text files.## Copyright (c) 1996-1997 by Sun Microsystems, Inc.## SCCS: @(#) cvtEOL.tcl 1.1 97/01/30 11:33:33### Convert files in the distribution to Mac style#set distDir [lindex $argv 0]set dirs {unix mac generic win library compat tests unix/dltest \	  library/demos library/demos/images bitmaps xlib xlib/X11 .}set files {*.c *.y *.h *.r *.tcl *.test *.rc *.bc *.vc *.bmp *.html \	   *.in *.notes *.terms all defs \	   README ToDo changes tclIndex configure install-sh mkLinks \	   square widget rmt ixset hello browse rolodex tcolor timer}foreach x $dirs {  if [catch {cd $distDir/$x}] continue  puts "Working on $x..."  foreach y [eval glob $files] {    exec chmod 666 $y    exec cp $y $y.tmp    exec tr \012 \015 < $y.tmp > $y    exec chmod 444 $y    exec rm $y.tmp  }}

⌨️ 快捷键说明

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