https://github.com/CryptDB/cryptdb
Raw File
Tip revision: 7678bc98d3054f1418371779c6d1050cd1a88b2e authored by Raluca Ada Popa on 04 January 2014, 01:31:06 UTC
small changes to readme
Tip revision: 7678bc9
setup.sh
#!/bin/bash

if [ "x$1" = "x" ]; then
    echo "Usage: $0 shadow-db-dir"
    exit 1
fi

if [ -d "$1" ]; then
    echo "Error: $1 already exists"
    exit 1
fi

mkdir $1

## XXX load schema for persistent metadata storage

back to top