gpt4 book ai didi

javascript - 如何使用shell在gulp中读取?

转载 作者:行者123 更新时间:2023-12-02 16:09:51 25 4
gpt4 key购买 nike

我正在尝试设置一个 gulp 文件,该文件要求用户输入(变量名称),但我无法让它工作。

我的 gulp-shell 回显正常,它触发读取命令并要求输入,但变量未保存。

这是我的 gulp 代码:

gulp.task('shell', shell.task([
'echo hello, whats your name?',
'read name',
'echo oh hello, $name'
]));

输出如下:

[14:51:47] Starting 'shell'...
hello, whats your name?
Foo
// ^ this is my input
oh hello,
[14:51:49] Finished 'shell' after 1.51 s

如您所见,我设置为“Foo”的 name 变量没有获得输出。

有什么想法吗?

最佳答案

读取输入并在一行中回显应该可以。像这样的事情

gulp.task('shell', shell.task([
'echo hello, whats your name?',
'read name;echo oh hello, $name'
]));

关于javascript - 如何使用shell在gulp中读取?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30327759/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com