커맨드라인에서 아래처럼 입력하면 클립보드에 문자열이 복사됨.
// 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) => {
//
});
'컴퓨터관련 잡동사니' 카테고리의 다른 글
[Chrome] 개발자도구 콘솔 팁 (4) | 2018.07.31 |
---|---|
[Chrome] console API (0) | 2018.07.31 |
윈도우즈용 netcat (netcat for windows) (2) | 2015.06.30 |
secureCRT anti-idle 설정 (0) | 2015.03.02 |
윈도우즈에서 리눅스의 time처럼 프로세스 실행시간 알아내는 법 (Windows, Linux, time, timethis, execution time) (0) | 2014.08.27 |