Hi,
How are you?
I found this tool today and would like to share it with you. In case you need to benchmark a Unix-like OS.
The actual version (1.8) has:
- 90 Test Profiles
- 39 Test Suites + PCQS
- GTK2 Graphical User Interface
- Enhanced *BSD Support
- Support For Reference System Comparisons
- Image Renderer Optimizations
- Updated Test Options
You can read more here or here.
I know it is not 3DMark (yet) but it is good.
lunes, 15 de junio de 2009
viernes, 5 de junio de 2009
Shell Scrips? 70s? NOT AT ALL!!!
Hi,
I found some very useful shell scripts at bashscripts.org. You may use them too... take a look.
A very small (10000 lines?) script... check it.
I found some very useful shell scripts at bashscripts.org. You may use them too... take a look.
A very small (10000 lines?) script... check it.
#!/bin/bash
#######################################################
# Bash CALCulator 2
#######################################################
#
#
# FILE: bashcalc2.sh
# VERSION: 1.1
# DATE: 06-19-2006
#
# AUTHOR: Crouse - Please visit bashscripts.org and usalug.org
#
#
########################################################
header ()
{
clear; echo "Bash Calculator - Enter a calculation and hit enter";
echo "---------------------------------------------------";
}
calc ()
{
header
while true
do read -p "" bashcalc;
if [ "$bashcalc" = "quit" ]
then
exit
fi
if [ "$bashcalc" = "clear" ]
then
calc
fi
if [ "$bashcalc" = "help" ]
then
clear
echo "Options include:"
echo " help - This help file"
echo " clear - Clears the screen"
echo " quit - Quits the program"
echo " "
read -p "Hit any key to continue" temp;
calc
fi
echo "scale=4; ${bashcalc}" | bc ;
echo "---------------------";
done
}
# Program run starts here
calc
exit 0
I know you have python or perl but admit it, you always liked bash scripting, after all, this is our interpreter.
Suscribirse a:
Entradas (Atom)