커맨드라인에서 아래처럼 입력하면 클립보드에 문자열이 복사됨.

// bloodguy 라는 문자열이 클립보드에 복사됨

C:\> echo bloodguy | clip




스크립트로 실행하려면 같은 원리로 하면 된다.


PHP

$s = 'bloodguy';
shell_exec('echo '.$s.' | clip');


node.js

'use strict';

const exec = require('child_process').exec;

let s = 'bloodguy';
exec('echo '+s+' | clip', (err, stdout, stderr) => {
    // 
});






Posted by bloodguy
,