feat: python script to get monthly cost
This commit is contained in:
parent
e8e899f4ff
commit
9e69924211
3 changed files with 24 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue