#!/bin/bash
NAME="segul-ManyLinux-x86_64.tar.gz"

echo "Filename: ${NAME}"

INPUT=$@
echo "Stripping ${INPUT}"
strip $@

tar czvf $NAME $@
