I try to use the alsamixer command line using script as follows:
Code:
#!/bin/bash
./alsamixer set Master 10%+ > /dev/null
exit 0
It is not working as I expected as I have to hit Control-C to exit the script. How can I do it using script without any user intervention?
Thanks
aayu09