我想使用模板文字,因为它们很方便,但在我的代码中看起来很奇怪。反正有没有写这个更可读?
以下是代码:
async function minimize(){
const xdotool = `#!/bin/sh
pids=$(xdotool search --class "firefox")
for pid in $pids; do
xdotool windowminimize $pid
done`
await timeout(15000)
exec("sh -c " + xdotool)
minimize()
}
答案 0 :(得分:0)