asotr_csv/asotr_unzip.sh
Danila Gamkov 65c5634372 fix readme
2025-01-31 15:06:08 +03:00

12 lines
205 B
Bash
Executable File

#! /bin/bash
if [ $# != 1 ]
then
echo "error use $0. Right use this script: "
echo "$0 path"
echo "example 1: $0 ./20250120-000"
else
path_=$1
tar -xzf ${path_}/data/asotr.tar.gz -C ${path_}/data
fi