A Random Bashing - primes

Página superior
Adjuntos:
Obtener este mensaje como un correo
+ (text/plain)
Eliminar este mensaje
Responder a este mensaje
Autor: Ben Trussell
Fecha:  
A: Main PLUG discussion list
Asunto: A Random Bashing - primes
A Random Act of Bashing... Find all primes between <arg1> and <arg2>
(expects/assumes integer values) and print to sdtout..

-------
#!/bin/bash

for (( a=$1; a<=$2; a++ ))
do
        n=`factor $a|awk '{print $NF}'`
        if [ $a == $n ]
        then
                echo $a
        fi
done
-------


EOF

- Ben
---------------------------------------------------
PLUG-discuss mailing list -
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss