openhwgroup / programs

Documentation for the OpenHW Group's set of CORE-V RISC-V cores
Other
186 stars 97 forks source link

Add instructions for viewing the coverage results. #655

Closed MikeOpenHWGroup closed 3 months ago

DBees commented 3 months ago

I wasn't sure why the "&" firefox index.html &

MikeOpenHWGroup commented 3 months ago

The ampersand (&) creates a fork to execute the proceeding command. Typing firefox index.html will launch firefox, but the terminal will "hang" until Firefox is terminated. Typing firefox index.html & will run Firefox on a new thread and the terminal will be ready for the next command.