1#!/bin/bash 2# This library is free software; you can redistribute it and/or 3# modify it under the terms of the GNU Lesser General Public 4# License as published by the Free Software Foundation version 2.1 5# of the License. 6# 7# Copyright(c) 2023 Huawei Device Co., Ltd. 8 9set -e 10cd $1 11if [ -d "re2" ];then 12 rm -rf re2 13fi 14tar zxvf re2-2021-11-01.tar.gz 15mv re2-2021-11-01 re2 16exit 0