- Haywire
- Serenity
- Moon
- Source Code
- Vantage Point
- Redeye
- Non-Stop
- Run Lola Run
- The International
- The Other Guys
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PRINTER = 192.168.1.65; | |
curl http://192.168.1.65/SSI/supply_status_info.htm | sed -e :a -e 's/<[^>]*>//g;/</N;//ba' > /tmp/printer; | |
BLACK=`grep -A 1 "Black Print Cartridge" /tmp/printer | grep %` | |
echo Black: $BLACK; | |
YELLOW=`grep -A 1 "Yellow Print Cartridge" /tmp/printer | grep %` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Short description. | |
* | |
* A longer, multi-line description. | |
* | |
* @param string $name | |
* A description of your variable | |
* @param int $count (default: 0) | |
* | |
* @return boolean |