1 Star 0 Fork 2

k8s-devops/DevOps-Bash-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pygmentize.sh 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
Hari Sekhon 提交于 2019-11-03 11:01 . updated pygmentize.sh
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2019-11-02 21:50:00 +0000 (Sat, 02 Nov 2019)
#
# https://github.com/harisekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
#set -euo pipefail
#[ -n "${DEBUG:-}" ] && set -x
# idea from https://superuser.com/questions/117841/when-reading-a-file-with-less-or-more-how-can-i-get-the-content-in-colors
if [ $# -gt 0 ]; then
case "$1" in
*.ad[asb]|\
*.asm|\
*.awk|\
*.axp|\
*.diff|\
*.ebuild|\
*.eclass|\
*.groff|\
*.hh|\
*.inc|\
*.java|\
*.js|\
*.lsp|\
*.l|\
*.m4|\
*.pas|\
*.patch|\
*.php|\
*.pl|\
*.pm|\
*.pod|\
*.pov|\
*.ppd|\
*.py|\
*.p|\
*.rb|\
*.sh|\
*.sql|\
*.xml|\
*.xps|\
*.xsl|\
*.[ch]pp|\
*.[ch]xx|\
*.[ch]\
) pygmentize -f 256 "$1"
;;
.bash*) pygmentize -f 256 -l sh "$1"
;;
*)
if grep -q '#!.*bash' "$1" 2> /dev/null; then
pygmentize -f 256 -l sh "$1"
else
exit 1
fi
esac
else
pygmentize -f 256 -g
fi
exit 0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/k8s-devops/DevOps-Bash-tools.git
git@gitee.com:k8s-devops/DevOps-Bash-tools.git
k8s-devops
DevOps-Bash-tools
DevOps-Bash-tools
master

搜索帮助