From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id B06492C36 for ; Tue, 22 Jan 2019 17:27:39 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Jan 2019 08:27:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,507,1539673200"; d="scan'208";a="140337889" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.222.236]) by fmsmga001.fm.intel.com with ESMTP; 22 Jan 2019 08:27:38 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Date: Tue, 22 Jan 2019 16:27:32 +0000 Message-Id: <20190122162732.58892-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH] usertools/dpdk-telemetry-client: make script executable X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Jan 2019 16:27:40 -0000 Add #! line to the top of the script and mark it as executable so it can be run directly rather than having to pass it to python interpreter. Signed-off-by: Bruce Richardson --- usertools/dpdk-telemetry-client.py | 1 + 1 file changed, 1 insertion(+) mode change 100644 => 100755 usertools/dpdk-telemetry-client.py diff --git a/usertools/dpdk-telemetry-client.py b/usertools/dpdk-telemetry-client.py old mode 100644 new mode 100755 index 6dcf62bac..ce0c7a905 --- a/usertools/dpdk-telemetry-client.py +++ b/usertools/dpdk-telemetry-client.py @@ -1,3 +1,4 @@ +#! /usr/bin/env python # SPDK-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corporation -- 2.20.1