Помогите с переводом команды под Linux
:loop
taskkill.exe /F /IM firefox.exe
taskkill.exe /F /IM crashreporter.exe
timeout 75 > NUL
START firefox
timeout 1800 > NUL
goto loop
И подскажите как можно в Ubuntu запускать Firefox с несколькими профилями, в Windows это делалось так:
@Echo off
start "0" "C:\Program Files\Mozilla Firefox\firefox.exe" -p Profile1 -no-remote
start "1" "C:\Program Files\Mozilla Firefox\firefox.exe" -p Profile2 -no-remote
start "2" "C:\Program Files\Mozilla Firefox\firefox.exe" -p Profile4 -no-remote
start "3" "C:\Program Files\Mozilla Firefox\firefox.exe" -p Profile4 -no-remote
exit