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

📄 recdscript.tcl

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 TCL
字号:
# See the file LICENSE for redistribution information.## Copyright (c) 1996-2002#	Sleepycat Software.  All rights reserved.## $Id: recdscript.tcl,v 11.4 2002/01/11 15:53:32 bostic Exp $## Recovery txn prepare script# Usage: recdscript op dir envcmd dbfile cmd# op: primary txn operation# dir: test directory# envcmd: command to open env# dbfile: name of database file# gidf: name of global id file# cmd: db command to executesource ./include.tclsource $test_path/test.tclset usage "recdscript op dir envcmd dbfile gidfile cmd"# Verify usageif { $argc != 6 } {	puts stderr "FAIL:[timestamp] Usage: $usage"	exit}# Initialize argumentsset op [ lindex $argv 0 ]set dir [ lindex $argv 1 ]set envcmd [ lindex $argv 2 ]set dbfile [ lindex $argv 3 ]set gidfile [ lindex $argv 4 ]set cmd [ lindex $argv 5 ]op_recover_prep $op $dir $envcmd $dbfile $gidfile $cmdflush stdout

⌨️ 快捷键说明

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