-
Notifications
You must be signed in to change notification settings - Fork 0
/
sh.ts
36 lines (28 loc) · 961 Bytes
/
sh.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { spawn } from 'child_process';
console.log('Hello, TypeScript!');
// 创建 rclone 命令的子进程
const rclone = spawn('rclone', ['config']);
// 定义变量来控制输入的值
let inputValue = '1';
// 监听子进程的 stdout 输出
rclone.stdout.on('data', (data: Buffer) => {
// 将子进程的输出转换成字符串
const output = data.toString();
// 在控制台中打印输出
console.log(output);
// 如果子进程提示输入数字,向其发送 inputValue
if (output.includes('Please enter a number:')) {
rclone.stdin.write(`${inputValue}\n`);
}
});
// 监听子进程的 stderr 输出
rclone.stderr.on('data', (data: Buffer) => {
// 将子进程的错误输出转换成字符串
const error = data.toString();
// 在控制台中打印错误输出
console.error(error);
});
// 监听子进程的退出事件
rclone.on('exit', (code: number) => {
console.log(`rclone exited with code ${code}`);
});