#!/usr/bin/bash

function start_firefox() {

  firefox https://google.com
  sleep 5
  firefox https://ya.ru

  return 0
}
start_firefox
