usscopy

来自「cryptlib安全工具包」· 代码 · 共 28 行

TXT
28
字号
#!/bin/sh#-----------------------------------------------------------------------# Cryptlib for MVS# # Developed on OS/390 2.10.## Copy files from the 'test' directory to the MVS data sets allocated # with ussalloc.  This must be executed from the 'test' directory.#-----------------------------------------------------------------------# The file extensions to copy from the 'test' directory.BINEXTS="p15 p12 der pgp gpg pkr skr p7s"# The middle-level qualifier of the test data sets.MLQ=CRYPTLIBfor i in $BINEXTS; do    for j in `ls *.$i`; do        mbr=`echo $j | awk -F '.' '{print $1}' | tr -d '_'`        cp -BA $j "//$MLQ.CLB$i($mbr)"    donedonecp -BA test.h "//$MLQ.CLBCMP"

⌨️ 快捷键说明

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