#!/bin/bash

# Usage:
#   sng-archive-restore <archive name>

/bin/tar -xpsvzf $1 -C / > /dev/null 2>&1

