ussalloc
来自「老外写的加密库cryptlib(版本3.1)」· 代码 · 共 48 行
TXT
48 行
#!/bin/sh#-----------------------------------------------------------------------# Cryptlib for MVS## Developed on OS/390 2.10.## Allocate MVS data sets for the test files used by 'testlib'.#-----------------------------------------------------------------------# The volume and unit on which to allocate the test data sets.VOLUME="UNIT(3390) VOL(STG001)"# The data set types or low-level qualifiers for the test data sets.POTYPES="CLBP15 CLBP12 CLBDER CLBPGP CLBGPG CLBPKR CLBSKR CLBP7S CLBCMP"PSTYPES="CLBTEST CLBTESTA"# The middle-level qualifier of the test data sets.MLQ=CRYPTLIBfor i in $POTYPES; do tso "DEL $MLQ.$i"donefor i in $PSTYPES; do tso "DEL $MLQ.$i"donefor i in $POTYPES; do tso "ALLOC DA($MLQ.$i) NEW CATALOG RECFM(V B) LRECL(256) \ BLKSIZE(27998) DSORG(PO) CYL SPACE(1,10) DIR(20) $VOLUME" if [ $? -ne 0 ]; then exit 1; fidonefor i in $PSTYPES; do tso "ALLOC DA($MLQ.$i) NEW CATALOG RECFM(V B) LRECL(256) \ BLKSIZE(27998) DSORG(PS) CYL SPACE(1,10) $VOLUME" if [ $? -ne 0 ]; then exit 1; fidone
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?