Feb 1, 2007 #1 Yarka Technical User Jan 14, 2007 192 ES Hi, How can I do the verification using awk, if I want to know if a number is module 5 but non module 10? Thanks.
Hi, How can I do the verification using awk, if I want to know if a number is module 5 but non module 10? Thanks.
Feb 1, 2007 1 #2 PHV MIS Nov 8, 2002 53,708 FR if(!(number%5)&&(number%10))print number, "OK" Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
if(!(number%5)&&(number%10))print number, "OK" Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886