#!/bin/sh

echo "lesson 14 Esoteric Scommands"

Sinit -v

date > /tmp/test9.txt
Sput -vf  -S demo-ufs-sdsc /tmp/test9.txt .
Sls -l test9.txt
Scat test9.txt 

date > /tmp/test10.txt 
Sappend /tmp/test10.txt test9.txt 
Sls -l test9.txt
Scat test9.txt 

date | Sappend -i test9.txt 
Sls -l test9.txt
Scat test9.txt 

Scp -S demo-ufs-sdsc test9.txt test10.txt
Sls -l test10.txt
Scat test10.txt
Sappend -s /home/du40.npaci/test9.txt test10.txt
Sls -l test10.txt
Scat test10.txt

Srm "test*.txt"

Sexit

