Difference between revisions of "User:Camille"

From FreekiWiki
Jump to navigation Jump to search
 
Line 8: Line 8:
 
== Chipset Testing Bash Script ==
 
== Chipset Testing Bash Script ==
  
 +
<nowiki>
 
#! /bin/bash
 
#! /bin/bash
 
if [ 'lspci | grep 'VGA.*82845' > /dev/null' ]; then
 
if [ 'lspci | grep 'VGA.*82845' > /dev/null' ]; then
 
echo "Evil Chipset Found!!!";
 
echo "Evil Chipset Found!!!";
 
fi
 
fi
 +
</nowiki>

Latest revision as of 12:50, 30 September 2010

meow meow. Camille from A.T. and Build chillin on the wiki.

Working on:
Gizmo tracking
CPU Testing Documentation


Chipset Testing Bash Script

#! /bin/bash if [ 'lspci | grep 'VGA.*82845' > /dev/null' ]; then echo "Evil Chipset Found!!!"; fi