diff options
author | Riku Viitanen <riku.viitanen@protonmail.com> | 2023-09-03 17:00:18 +0300 |
---|---|---|
committer | Riku Viitanen <riku.viitanen@protonmail.com> | 2023-09-03 17:00:21 +0300 |
commit | ef3fb05d66f1b5c94dd65ae2d14b691227d6afbe (patch) | |
tree | 894ae0f3d31e032a34fc9a6d65f6c31036ae8dcb /script/misc/versioncheck | |
parent | e369e8fb4ab688f26334e93067fdd307d5793710 (diff) |
Less cat abuse
More than 90% of cats were thus terminated.
read (shell built-in) is better at reading, and dogs are better pets.
Signed-off-by: Riku Viitanen <riku.viitanen@protonmail.com>
Diffstat (limited to 'script/misc/versioncheck')
-rwxr-xr-x | script/misc/versioncheck | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/script/misc/versioncheck b/script/misc/versioncheck index 73fbb140..6ee683ee 100755 --- a/script/misc/versioncheck +++ b/script/misc/versioncheck @@ -21,10 +21,10 @@ set -u . "include/err.sh" -project="$(cat projectname)" +read project < projectname version="version-unknown" -[ -f version ] && version="$(cat version)" +[ -f version ] && read version < version version_="${version}" if [ -e ".git" ]; then version="$(git describe --tags HEAD 2>&1)" || \ @@ -34,7 +34,7 @@ if [ -e ".git" ]; then fi versiondate="version-date-unknown" -[ -f versiondate ] && versiondate="$(cat versiondate)" +[ -f versiondate ] && read versiondate < versiondate versiondate_="${versiondate}" if [ -e ".git" ]; then versiondate="$(git show --no-patch --no-notes --pretty='%ct' HEAD)" || \ |