My helpful bash snippets
Here are some of my most used snippets, aliases and bash scripts. These are tailored for my use case and workflow. Hope you find something useful.
for loop (run 100 times) #
for i in `seq 1 100` ; do
done
loop and check the response header #
for i in `seq 1 100` ; do
curl -skIXGET https://ramit.io | grep cache
done