Skip to content

Instantly share code, notes, and snippets.

View tushar-borole's full-sized avatar
🎯
Working on React

Tushar Borole tushar-borole

🎯
Working on React
View GitHub Profile
#!/bin/bash
ax=`vnstat --oneline | awk -F ";" '{print $11}'`
if [[ "$ax" == *GiB* ]];
then
if [ $(echo "$(echo "$ax" | sed 's/ GiB//g') > 999"|bc) -eq 1 ]
then
shutdown -h now
fi
fi