I'm trying to find a way to check the battery status on a batch file, i.e stop the execution of the script if the laptop is running on battery. I'm trying with the poercfg command with no results.
All I need is Something like that but in a batch file:
#!/bin/bash
if [ acpi -a | grep "off-line" eq 0 ];
then echo "plug your laptop and run it again"
exit 1
fi
What can I use?