Setup task, AWS aliases

This commit is contained in:
2025-01-30 10:57:57 -05:00
parent 941bee835a
commit d04af8e39f
9 changed files with 121 additions and 81 deletions

View File

@@ -32,7 +32,8 @@ elif (( $(echo "$price < 100" | bc -l) )); then
echo "$price" | tr -d '.' | awk '{print substr($0, 1, 3)}'
elif (( $(echo "$price < 1000" | bc -l) )); then
echo "$price" | numfmt --grouping | cut -c -3
elif (( $(echo "$price < 10000" | bc -l) )); then
#elif (( $(echo "$price < 10000" | bc -l) )); then
elif (( $(echo "$price < 100000" | bc -l) )); then
echo "$price" | cut -c -3
elif (( $(echo "$price > 100000" | bc -l) )); then
echo "$price" | numfmt --grouping | cut -c -3