Skip to content

Latest commit

 

History

History
84 lines (65 loc) · 1.34 KB

S03-03.md

File metadata and controls

84 lines (65 loc) · 1.34 KB


HOME ABOUT WEB GITHUB TOP BOTTOM PREV NEXT


SP Week 03 Assignment #4: Script Download

mkdir -pv $HOME/myspwork/
cd $HOME/myspwork/
wget -c https://sp.vlsm.org/WEEK/WEEK03.tar.xz.asc
ls -al


Decrypt file WEEK03.tar.xz.asc

  • The passphrase/password will be announced at SCELE at the beginning of the week.
gpg -o WEEK03.tar.xz -d WEEK03.tar.xz.asc
ls -al


Extract TARBALL

tar xfv WEEK03.tar.xz
cd WEEK03/
ls -al


Check Scripts

for II in [0-9][0-9]* ; do
    echo ""
    echo "= === ==== FILE $II..."
    echo "= === ==== ==== ==== ==== ==== ==== ===="
    cat  "$II"
done


Run Scripts

bash 00-SP-install-to-bin.sh

bash 01-SP-Version-Check.sh


Check RESULT

cd $HOME/SP_RESULT/W03/
ls -al



HOME ABOUT WEB GITHUB TOP BOTTOM PREV NEXT