From 2cab22724a5d72ec1589dce97756ca5dda976264 Mon Sep 17 00:00:00 2001 From: Henry Li Date: Tue, 25 Jul 2023 17:31:58 -0400 Subject: [PATCH] init checker_tool (#1386) Signed-off-by: Henry Li --- checker_tool/check_cpfs.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 checker_tool/check_cpfs.sh diff --git a/checker_tool/check_cpfs.sh b/checker_tool/check_cpfs.sh new file mode 100755 index 000000000..c8bc9ad4f --- /dev/null +++ b/checker_tool/check_cpfs.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash + +# Licensed Materials - Property of IBM +# Copyright IBM Corporation 2023. All Rights Reserved +# US Government Users Restricted Rights - +# Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. +# +# This is an internal component, bundled with an official IBM product. +# Please refer to that particular license for additional information. + +function main() { + echo "This is the main function" +} + +main "$@"