#!/bin/bash

echo "digite seu salario:"
read salario

if [$salario -lt 1500 ]; then
echo "baixa renda"
elif [$salario -ge 1500 ] && [$salario -le 5000]; then
echo "classe media"
else
echo "rico"
fi

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: