UNIX/Linux Bash Shell Scripting: Shell Script to Find Prime Number
#!/bin/bash # SCRIPT: prime2a.sh # USAGE : ./prime2a.sh # PURPOSE: Finds whether given number is prime or not echo -n "Enter a number: "read num # Integer Validation #
www.bashguru.com |