zsqk / news

每日新闻.
https://zsqk.github.io/news/
MIT License
10 stars 1 forks source link

备稿计划: Deno.chdir 使用说明 #80

Open iugo opened 4 years ago

iugo commented 4 years ago
Deno.chdir('/Users'); // `/Users`
Deno.chdir(Deno.makeTempDirSync()); // `/private${dirPath}`
Deno.chdir('/home'); // `/System/Volumes/Data/home`

new TextDecoder('utf-8').decode(await Deno.run({ cmd: ['pwd'], stdout: 'piped' }).output());