Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Refresh/reload active browser tab from command line?

I'm trying to set up a custom toolchain where the browser (Firefox or, preferrably, Chrome) is often/frequently/constantly forced to refresh from the commandline.

(The idea is to instantly see the visual changes in the html/webapp I'm editing in an adjacent Emacs frame - without having to constantly tab to the browser to do a manual refresh.)

The closest I've come so far is to run google-chrome FILE_PATH. However this opens a new tab every time.

Are there other approaches?
by

1 Answer

Amit8z4mc
For OS X you can use this bit of applescript:
activate application "Firefox"
tell application "System Events" to keystroke "r" using command down

Login / Signup to Answer the Question.