move_physical.sh.txt
来自「管理online的shell程序」· 文本 代码 · 共 44 行
TXT
44 行
#!/usr/bin/ksh################################################################################# Module: move_physical.sh# Author: Peter R. Schmidt# Description: Move the physical log and change it's size## Change Log## Date Name Description.................# 06/21/00 Peter R. Schmidt Start Program################################################################################echoecho "What size do you want for the new physical log ? (in kbytes)"echo "Note: it must be slightly smaller then the size of the dbspace"echo "that it will reside in)."read NEW_SIZEechoecho "What DBSPACE will the physical log reside in ?"read NEW_DBSPACEecho echo "New size: $NEW_SIZE kbytes"echo "New DBSPACE: $NEW_DBSPACE"echoecho "Press <Enter> to continue <INTERRUPT> to quit"read answer###############################################################################onmode -uysleep 5onparams -p -s $NEW_SIZE -d $NEW_DBSPACE -ysleep 5onmode -m
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?