15f9996aaSopenharmony_ci#!/usr/bin/env python3 25f9996aaSopenharmony_ci# -*- coding: utf-8 -*- 35f9996aaSopenharmony_ci# 45f9996aaSopenharmony_ci# Copyright (c) 2020 Huawei Device Co., Ltd. 55f9996aaSopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License"); 65f9996aaSopenharmony_ci# you may not use this file except in compliance with the License. 75f9996aaSopenharmony_ci# You may obtain a copy of the License at 85f9996aaSopenharmony_ci# 95f9996aaSopenharmony_ci# http://www.apache.org/licenses/LICENSE-2.0 105f9996aaSopenharmony_ci# 115f9996aaSopenharmony_ci# Unless required by applicable law or agreed to in writing, software 125f9996aaSopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS, 135f9996aaSopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 145f9996aaSopenharmony_ci# See the License for the specific language governing permissions and 155f9996aaSopenharmony_ci# limitations under the License. 165f9996aaSopenharmony_ci# 175f9996aaSopenharmony_ci 185f9996aaSopenharmony_ciimport subprocess 195f9996aaSopenharmony_ciimport sys 205f9996aaSopenharmony_ci 215f9996aaSopenharmony_ci 225f9996aaSopenharmony_cidef main(): 235f9996aaSopenharmony_ci return subprocess.Popen(' '.join(sys.argv[1:]), shell=True).wait() 245f9996aaSopenharmony_ci 255f9996aaSopenharmony_ci 265f9996aaSopenharmony_ciif __name__ == '__main__': 275f9996aaSopenharmony_ci sys.exit(main()) 28