centos7的root账户下无法通过code
命令启动vscode:
[root@localhost ~]# code
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.
通过命令行启动code,并打开文件夹:
vim ~/.bashrc
添加以下别名:
alias code='sudo code --user-data-dir="/!:1"'
alias的使用说明:
alias格式: alias name text
在text中要得到用户传递的参数可以使用以下方式
/!:1 表示第1个参数
/!:2* 表示第2个及余下的所有参数
/!* 表示所有参数