feat: python script to get monthly cost

This commit is contained in:
Strix 2023-10-29 16:59:16 +01:00
parent e8e899f4ff
commit 9e69924211
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
3 changed files with 24 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#!/bin/sh
for s in $(find tools/ -type f -iname "*.sh"); do
for s in $(find tools/ -type f -regex ".*\.\(sh\|py\)"); do
if ! [ -x $s ]; then
echo "$s is not executable"
exit 1

View file

@ -1,6 +1,6 @@
#!/bin/sh
for s in $(find tools/ -type f -iname "*.sh"); do
for s in $(find tools/ -type f -regex ".*\.\(sh\|py\)"); do
[ -x $s ] && continue
echo "fixing permissions for $s..."
chmod +x $s