github.com/verrazzano/verrazzano-monitoring-operator@v0.0.30/hack/add_header.sh (about) 1 #!/bin/bash 2 # Copyright (C) 2022, Oracle and/or its affiliates. 3 # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. 4 5 FILE="$1" 6 echo '# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.' | cat - $FILE > tmp && mv tmp $FILE 7 echo '# Copyright (C) 2020, 2022, Oracle and/or its affiliates.' | cat - $FILE > tmp && mv tmp $FILE