We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found an IBM written script: ftp://public.dhe.ibm.com/services/us/igsc/cs2/shellScripts/ the zips a save file.
I took the idea to then move a savf to ta real savf. it needs some help but is functional. You can use if you want
#!/usr/bin/sh
declare SAVF=$1 declare -u LIBFILENAME=$2
echo $SAVF echo $LIBFILENAME
declare -u IFSPATH="/QSYS.LIB/${LIBFILENAME%/}.LIB/${LIBFILENAME#/}.FILE"
echo $IFSPATH
system "crtsavf $LIBFILENAME"
echo '.:. Copying' $SAVF 'to save file' $LIBFILENAME '.:.'
sleep 1
cp $SAVF $IFSPATH
system "dspsavf $LIBFILENAME"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found an IBM written script:
ftp://public.dhe.ibm.com/services/us/igsc/cs2/shellScripts/
the zips a save file.
I took the idea to then move a savf to ta real savf.
it needs some help but is functional. You can use if you want
#!/usr/bin/sh
declare SAVF=$1
declare -u LIBFILENAME=$2
echo $SAVF
echo $LIBFILENAME
declare -u IFSPATH="/QSYS.LIB/${LIBFILENAME%/}.LIB/${LIBFILENAME#/}.FILE"
echo $IFSPATH
system "crtsavf $LIBFILENAME"
echo '.:. Copying' $SAVF 'to save file' $LIBFILENAME '.:.'
sleep 1
cp $SAVF $IFSPATH
system "dspsavf $LIBFILENAME"
The text was updated successfully, but these errors were encountered: