Creating link for Macromedia Flash plugin for Firefox

I use FreeBSD 8.0 and would like to know how to type this in order to create the link:
# ln -s /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so \
/usr/local/lib/browser_plugins/

Should I first type: # ln -s /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so \

and then: /usr/local/lib/browser_plugins/

or what???

Thanks in advance/
Lasse
 
The backslash is just a continuation to the next line, so

Code:
# ln -s /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so \
/usr/local/lib/browser_plugins/

is the same thing as

Code:
# ln -s /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so /usr/local/lib/browser_plugins/
 
Back
Top