11 lines
497 B
Cheetah
11 lines
497 B
Cheetah
{{ if and (eq .chezmoi.os "darwin") (stat (print "/etc/bashrc")) }}
|
|
# ----取自 /etc/bashrc 預設內容 ----------------------------------------------
|
|
{{ include "/etc/bashrc" | trim }}
|
|
{{ else if (stat (print "/etc/skel/.bashrc")) }}
|
|
# ----取自 /etc/skel/.bashrc 預設內容 ----------------------------------------
|
|
{{ include "/etc/skel/.bashrc" | trim }}
|
|
{{ end }}
|
|
|
|
# ----以下是我的自訂內容 ------------------------------------------------------
|
|
{{ template "sh_common.tmpl" . }}
|