feat: porting scripts to python

This commit is contained in:
KenF
2026-01-22 09:31:32 +08:00
parent 4f71082813
commit 55d32b83ff
17 changed files with 161 additions and 37 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
#!/bin/bash
for i in aws*.sh; do
for i in aws*.{py,sh}; do
echo "# $i"
bash $i | mlr --c2t cat | column -t
./"$i" | mlr --c2t cat | column -t
wait $!
done