1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-10-20 00:09:21 +03:00
Files
mariadb-columnstore-engine/utils/prat/tarfiles.sh
2016-05-31 16:40:30 -05:00

22 lines
555 B
Bash

#! /bin/sh
#
#/*******************************************************************************
#* Script Name: tarfiles.sh
#* Date Created: 2009.04.17
#* Author: Calpont Corp.
#* Purpose: tar the data collection files
#*
#* Parameters: hostdir
#* tarfile
#*
#******************************************************************************/
#
hostdir=$1
tarfile=$2
#
# tar the files
cd /usr/local/mariadb/columnstore/tools/data
tar -cf $tarfile $hostdir
#
# End of Script