I want to be able to copy all text on a web url.
Here is an example of how to do it in Matlab on windows:
function str=CopyPasteIE(url);
h = actxserver('internetexplorer.application');
Navigate(h, url);
pause(3); % Pause to let the page load
h.document.execCommand('selectall', '', '');
h.document.execCommand('copy', '', '');
str = clipboard('paste');
end
I want to do the this in Linux on Matlab.