我正在使用 Linux 和 vscode,并且想要备份其扩展。我使用此方法:
code --list-extensions | xargs -L 1 echo code --install-extension
我的备份是使用 rsync、以 root 身份作为 cron 作业完成的。因此,运行该命令会得到:
You are trying to start vscode as a super user which is not recommended. If you really want to, you must specify an alternate user data directory using the --user-data-dir argument.
所以我用一些临时目录执行此操作,然后我得到了一个扩展列表。但是,它会在该目录中创建垃圾,然后我必须删除它们。
有没有更干净的方法来做到这一点?