本篇文章為大家展示了怎么在linux中使用make命令輸出高亮,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
淄博網站建設公司創(chuàng)新互聯(lián)建站,淄博網站設計制作,有大型網站制作公司豐富經驗。已為淄博超過千家提供企業(yè)網站建設服務。企業(yè)網站搭建\成都外貿網站建設公司要多少錢,請找那個售后服務好的淄博做網站的公司定做!
一、改造服務器登錄shell
服務器默認登錄進去的shell是sh,但是我想使用bash,進行以下操作就可以了:
# chsh Password: //輸入你的密碼就 Changing the login shell for jet Enter the new value, or press ENTER for the default Login Shell [/bin/sh]:/bin/bash //回車
關閉shell 再次登錄的時候檢查是否切換到了bash.。
# echo $SHELL /bin/bash
這就代表切換成功了。
檢查下環(huán)境變量。貌似 .bashrc 沒有自動執(zhí)行:
# vim ~/.profile //添加下面內容 source ~/.bashrc
再次關閉shell后登錄,已經成功加載 .bashrc了。
二、真正動手處理make輸出
這里處理make輸出使用的是一個github上的小程序,地址如下:
github地址:https://github.com/chinaran/color-compile
本地下載地址:http://xiazai.jb51.net/201707/yuanma/color-compile(jb51.net).rar
下載好后放到編譯服務器中,進行解壓和編譯:
unzip color_compile.zip cd color_compile/ \make cp color_compile out_color_info ~/program/
因為我沒有root權限,所以只有曲線救國,將需要程序直接拷貝到我的program目錄中,然后在修改 .bashrc
vim ~/.bashrc //添加如下內容 export PATH=/home/jet/program/:$PATH alias arm-openwrt-linux-gcc="color_compile arm-openwrt-linux-gcc" alias arm-openwrt-linux-g++="color_compile arm-openwrt-linux-g++" alias make="color_compile make"
然后在生效下環(huán)境變量:
source ~/.bashrc
去源代碼目錄中嘗試下輸出是否正確,如下圖所示:
上述內容就是怎么在linux中使用make命令輸出高亮,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。