# Make sure that the basic `svms create' command works:
rm -rf create_basic
svms new -R create_basic create_basic
echo Hello > create_basic/hello.txt
echo Goodbye >> create_basic/hello.txt
cd create_basic; svms create hello.txt
# Verify that the file is now read-only:
if [ -w create_basic/hello.txt ] ;			\
   then	echo "File is read-write (incorrect)" ;	\
   else	echo "File is read-only (correct)" ;	\
   fi
File is read-only (correct)
# Capture the directory structure:
ls -R create_basic
SVMS
hello.txt

create_basic/SVMS:
h.hello.txt
p.listing
p.project
cat create_basic/SVMS/p.listing
H "SVMS Listing" 1. 2.
C 1.
F "hello.txt"  "{timestamp}" {hash} {zero_hash} F
E
cat create_basic/SVMS/h.hello.txt
H "SVMS_History_File" 1. 0.
N "hello.txt"  "{timestamp}"
V 0. "create_basic"  "{timestamp}" F  "{timestamp}"
L 2.
T "Hello"
T "Goodbye"
D 1. |0:0!2.
C 0.
I 0.
X 0. 0. "File" "create_basic"  "{timestamp}"  "{timestamp}" 0. "Wayne C. Gramlich" F F
rm -rf create_basic
