24 lines
691 B
Bash
24 lines
691 B
Bash
|
#!/bin/bash
|
||
|
# Copyright 2019 The Chromium OS Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
# This script accepts two parameters: a file name and a string.
|
||
|
#
|
||
|
# If the file does not exist, or does not contain the passed in string wrapped
|
||
|
# in '/*... */, the file is written with the wrapped passed in string.
|
||
|
|
||
|
h_file="$1"
|
||
|
current_set="/* $2 */"
|
||
|
|
||
|
if [[ -f "${h_file}" ]]; then
|
||
|
old_set="$(cat "${h_file}")"
|
||
|
if [[ "${current_set}" == "${old_set}" ]]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
else
|
||
|
dest_dir="$(dirname "${h_file}")"
|
||
|
[[ -d "${dest_dir}" ]] || mkdir -p "${dest_dir}"
|
||
|
fi
|
||
|
printf "${current_set}" > "${h_file}"
|