restore.tcl

来自「网络数据管理协议的开发」· TCL 代码 · 共 42 行

TCL
42
字号
#                               -*- Mode: Tcl -*- # dump.tcl# # Description     : Starts a dump.# # Copyright (c) 1996,1997 PDC, Network Appliance. All Rights Reserved.## $Id: restore.tcl,v 1.4 1997/02/01 09:50:21 tim Exp $# if ![info exists env(SYSTEM_SCRIPT)] {    source system.tcl} else {    source $env(SYSTEM_SCRIPT)}connect_open 1eval $auth_cmdtape_open $tape_devicetape_mtio rew# Use the following to test selective file restore and# verify file recovered messages are generated to files# not found on the tape.#add_nlist bogus1 $dest_dir/bogus1#add_nlist etc/bogus2 $dest_dir/etc/bogus2#add_nlist hosts $dest_dir/hosts#add_nlist ./skel $dest_dir/./skel# Use the following to test zero length name which may be used# to specify the backup root directory.#add_nlist  "" $dest_dir# Use the following to test using / to specify the backup root directory.#add_nlist / $dest_dir/# Use the following to test using . to specify the backup root directory.add_nlist . $dest_dir/.data_start_recover dump

⌨️ 快捷键说明

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