Apache Bench load testing
Apache Bench (ab) is a popular command-line tool used for benchmarking the performance of HTTP web servers. Here's a basic guide on how to use it:
#!bash
N=100
C=15
AB=/usr/sbin/ab
URL=https://yahoo.com/
$AB -n $N -c $C $URL