MAC終端配置

2022-08-24 15:39:13 字數 1857 閱讀 5304

針對terminal採用bash模式:

編輯 ~/.bash_profile, 加入以下**:

export clicolor=1

export lscolors=gxfxaxdxcxegedabagacad

儲存,然後重啟terminal,搞定,恢復正常了(或者source ~/.bash_profile)

詳細講解**中的涵義:

clicolor: 前景色和背景色的字串合併值

lscolors: 對於不同變數所採用的顏色方案,具體看如下**:

a       black

b       red

c       green

d       brown

e       blue

f        magenta

g      cyan

h       light grey

a      bold black, usually shows up as dark grey

b       bold red

c      bold green

d      bold brown, usually shows up as yellow

e       bold blue

f       bold magenta

g     bold cyan

h      bold light grey; looks like bright white

x       default foreground or background

而檔案型別列表如下:

1. directory

2. symbolic link

3. socket

4. pipe

5. executable

6. block special

7. character special

8. executable with setuid bit set

9. executable with setgid bit set

10. directory writable to others, with sticky bit

11. directory writable to others, without sticky

所以對照這張表就可以得知:

gxfxaxdxcxegedabagacad
就是對於directory而言,它的前景色就是: g(cyan),而背景色就是:x(預設的背景色).

開啟終端,輸入:

nano .inputrc

在裡面貼上上以下語句:

set completion-ignore-case

onset show-all-if-ambiguous on

tab: menu-complete

control+o,儲存,重啟終端

在mac os的終端(terminal)中,可以使用命令 ssh user@host 的命令來遠端連線一台服務器,但是,如果要管理的服務器太多,ip位址不能全部記住的時候怎麼辦?這時候我們可以為每一台服務器設定乙個別名(alias),使用vim命令編輯一下 ~/.ssh/config 這個檔案(如果目錄下沒有這個檔案,可以新建乙個),接著按下面格式新增內容:

host 別名

hostname ip位址

port

22user 使用者名稱

另外,如果想檢視當前有哪些配置了別名的伺服器,可以使用命令cat ~/.ssh/config | grep "host"

MAC 中終端的配置

無論在之前的學習過程中還是在英特爾的實習,一直使用的是ubantu系統,習慣了ubantu系統下的終端介面,所以當切換到mac os x系統下時,開啟終端,迎面撲來一股子性冷淡風,資料夾與檔案沒有顏色區分,路徑只顯示當前資料夾.讓人難以接受。於是網上搜了下資料,借助於zsh和oh my zsh完成了...

玩轉Mac終端 Mac 終端常用知識

lsof i port tq wxdemacbook pro anonyper lsof i 8081 command pid user fd type device size off node name uwsgi 22117 anonyper 3u ipv4 0x90a5adf44866b61d...

mac下終端iTerm2配置

之前一直使用 mac os 自帶的終端,用起來雖然有些不太方便,但總體來說還是可以接受的,是有想換個終端的想法,然後今天偶然看到乙個終端利器 iterm2,發現真的很強大,也非常的好用,按照網上配置了主題什麼的,還是有些坑的,這邊再記錄下,以便後面查閱。或者你可以直接使用 homebrew 進行安裝...