#!/bin/bash

for ((num=0;num<=500;num++)) do if [ [[num % 7] -eq 0 ] then echo $num fi done