📄 usscopy
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -