You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-10-20 00:09:21 +03:00
22 lines
555 B
Bash
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
|