diff options
author | Peter | 2024-08-04 16:00:51 +0100 |
---|---|---|
committer | Peter | 2024-08-04 16:00:51 +0100 |
commit | a28512ad5281bcac3553afec02aea3705b28bd38 (patch) | |
tree | 27998f462950530b7d02225d928946a33b8c545c | |
parent | e8343072b19aa0039a5191fd945da0e39948b339 (diff) | |
download | dotfiles-a28512ad5281bcac3553afec02aea3705b28bd38.tar.gz dotfiles-a28512ad5281bcac3553afec02aea3705b28bd38.tar.bz2 dotfiles-a28512ad5281bcac3553afec02aea3705b28bd38.zip |
Typo on printf output
-rwxr-xr-x | .local/bin/milieage | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/milieage b/.local/bin/milieage index c6831cd..ed1bea7 100755 --- a/.local/bin/milieage +++ b/.local/bin/milieage @@ -17,6 +17,6 @@ lie="$(echo "$previous" + "$miles" + "$lie_miles" | bc)" printf "\nYou have %s miles in the bank.\nEnter %s as your month end." "$banked" "$lie" datestamp=$(date +"%Y-%m-%dT%H:%M:%S%z") -printf "# %s %s %s %s %s" "$datestamp" "$current" "$previous" "$miles" "$banked">> "$0" +printf "\n# %s %s %s %s %s" "$datestamp" "$current" "$previous" "$miles" "$banked" >>"$0" exit |