that's a bunch of cool new stuff

This commit is contained in:
2024-12-19 23:32:30 +01:00
parent ae3d29b0ee
commit ac51a31675
34 changed files with 864 additions and 517 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
CURRENT_LANG=$(echo $LANG| cut -d. -f1)
TRANSL_FILE=~/.config/$CURRENT_LANG
echo $TRANSL_FILE
while IFS="," read -r rec_column1 rec_column2 rec_column3 rec_column4
do
echo "Displaying Record-$rec_column1"
echo "Quantity: $rec_column2"
echo "Price: $rec_column3"
echo "Value: $rec_column4"
echo ""
done < <(tail -n +2 $TRANSL_FILE)