8 lines
177 B
Markdown
Executable File
8 lines
177 B
Markdown
Executable File
# update-alternatives
|
|
|
|
``` bash
|
|
# 设置优先级
|
|
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20
|
|
# 查询版本
|
|
sudo update-alternatives --query gcc
|
|
``` |