-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtableformatting.bash
56 lines (42 loc) · 1.3 KB
/
tableformatting.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
## Table Formatting
# Format Table Header
formatTableHeader() {
local columns=("$@")
local column_width=${columns[-1]} # Get the last argument as column width
if [[ $column_width =~ ^[0-9]+$ ]]; then
unset columns[-1] # Remove the last argument from the array
else
column_width=15 # Use default width of 15
fi
local formatted_header=""
for column in "${columns[@]}"; do
formatted_header+=$(printf '%-*s' "$column_width" "$column")
done
echo "$formatted_header"
}
#Format Table Row
formatTableRow() {
local row_values=("$@")
local column_width=${row_values[-1]} # Get the last argument as column width
if [[ $column_width =~ ^[0-9]+$ ]]; then
unset row_values[-1] # Remove the last argument from the array
else
column_width=15 # Use default width of 15
fi
local formatted_row=""
for value in "${row_values[@]}"; do
formatted_row+=$(printf '%-*s' "$column_width" "$value")
done
echo "$formatted_row"
}
# Print Table Separator
printTableSeparator() {
local num_columns=$1
local column_width=${2:-15}
local separator=""
local total_width=$((num_columns * (column_width + 3) - 3))
for ((i = 1; i <= total_width; i++)); do
separator+="="
done
echo "$separator"
}