当我有一个差异时,我如何给它上色,使它看起来更好?

我想它的命令行,所以请没有GUI解决方案。


diff的手册页没有建议从内部进行着色的解决方案。请考虑使用色差。它是diff的包装器,产生与diff相同的输出,除了它使用彩色语法高亮显示来增强输出以增加可读性:

diff old new | colordiff

或者是:

colordiff old new

安装:

Ubuntu/Debian: sudo apt-get install colordiff OS X: brew install colordiff或port install colordiff


使用Vim:

diff /path/to/a /path/to/b | vim -R -

或者更好的是,VimDiff(或vim -d,打字更短)将并排显示两个、三个或四个文件之间的差异。

例子:

vim -d /path/to/[ab]

vimdiff file1 file2 file3 file4

我使用grc(通用着色器),它允许您对包括diff在内的许多命令的输出进行着色。

它是一个Python脚本,可以封装在任何命令中。因此,不是调用diff file1 file2,而是调用grc diff file1 file2来查看着色的输出。我有别名diff到grc diff使它更容易。


当yum install colordiff或apt-get install colordiff由于一些超出你直接控制的疯狂限制而不是一个选项时,或者你只是感觉疯狂,你可以用一行sed来重新发明轮子:

sed 's/^-/\x1b[41m-/;s/^+/\x1b[42m+/;s/^@/\x1b[34m@/;s/$/\x1b[0m/'

把它扔到一个shell脚本中,并通过它管道统一的差异输出。

它使大块标记为蓝色,突出显示新/旧文件名和添加/删除的行,分别为绿色和红色背景它将使尾随空格2的变化比colordiff更明显。


顺便说一句,突出显示与修改行相同的文件名的原因是,要正确区分文件名和修改行,需要正确解析diff格式,这不是用正则表达式可以解决的问题。突出显示它们在视觉上“足够好”,使问题变得微不足道。也就是说,有一些有趣的微妙之处。

2但不是尾随制表符。显然制表符没有得到它们的背景设置,至少在我的xterm中是这样。它确实使制表符与空格的变化脱颖而出。


你可以改变Subversion配置使用colordiff:

~ / .subversion / config.diff

 ### Set diff-cmd to the absolute path of your 'diff' program.
 ###   This will override the compile-time default, which is to use
 ###   Subversion's internal diff implementation.
-# diff-cmd = diff_program (diff, gdiff, etc.)
+diff-cmd = colordiff

通过https://gist.github.com/westonruter/846524


实际上,似乎还有另一个选择(我最近才注意到,当遇到上面描述的问题时):

git diff --no-index <file1> <file2>
# output to console instead of opening a pager
git --no-pager diff --no-index <file1> <file2>

如果您身边有Git(您可能已经在使用它了),那么您将能够使用它进行比较,即使文件本身不受版本控制。如果默认情况下没有启用,那么在这里启用颜色支持似乎比前面提到的一些变通方法要容易得多。


彩色,字级差异输出

下面是你可以用下面的脚本和diff-highlight做的事情:

#!/bin/sh -eu

# Use diff-highlight to show word-level differences

diff -U3 --minimal "$@" |
  sed 's/^-/\x1b[1;31m-/;s/^+/\x1b[1;32m+/;s/^@/\x1b[1;34m@/;s/$/\x1b[0m/' |
  diff-highlight

(这要归功于@retracile对sed高亮的回答)


由于wdiff接受在插入和删除的开头和结尾指定字符串的参数,您可以使用ANSI颜色序列作为这些字符串:

wdiff -n -w $'\033[30;41m' -x $'\033[0m' -y $'\033[30;42m' -z $'\033[0m' file1 file2

例如,这是比较两个CSV文件的输出:

来自2.2的例子wdiff的实际使用示例。


diff——颜色选项(添加到GNU diffutils 3.4在2016-08-08)

这是大多数发行版的默认差异实现,很快就会得到它。

Ubuntu 18.04 (Bionic Beaver)有困难3.6,因此有它。

在3.5版本中是这样的:

测试:

diff --color -u \
  <(seq 6 | sed 's/$/ a/') \
  <(seq 8 | grep -Ev '^(2|3)$' | sed 's/$/ a/')

显然是在提交c0fa19fe92da71404f809aafb5f51cfd99b1bee2(2015年3月)中添加的。

也能进行比较

像diff-highlight。这似乎是不可能的,但有一个功能请求:https://lists.gnu.org/archive/html/diffutils-devel/2017-01/msg00001.html

相关问题:

使用'diff'(或其他任何东西)来获取文本文件之间的字符级差异 https://unix.stackexchange.com/questions/11128/diff-within-a-line https://superuser.com/questions/496415/using-diff-on-a-long-one-line-file

不过Ydiff就是这么做的。见下文。

Ydiff并排字级别差异

https://github.com/ymattw/ydiff

这是涅槃吗?

python3 -m pip install --user ydiff
diff -u a b | ydiff -s

结果:

如果行太窄(默认为80列),适合屏幕:

diff -u a b | ydiff -w 0 -s

测试文件内容:

a

1
2
3
4
5 the original line the original line the original line the original line
6
7
8
9
10
11
12
13
14
15 the original line the original line the original line the original line
16
17
18
19
20

b

1
2
3
4
5 the original line the original line the original line the original line
6
7
8
9
10
11
12
13
14
15 the original line the original line the original line the original line
16
17
18
19
20

西cyff退出

ydiff与Git集成,无需任何配置。

在Git存储库中,你可以做的不是Git diff,而是:

ydiff -s

而不是git log:

ydiff -ls

请参见:当我执行“git diff”时,我如何获得一个并排diff ?

在Ubuntu 16.04 (Xenial Xerus), Git 2.18.0和ydiff 1.1上测试。


我建议你试试diff-so-fancy。我在工作中使用它,现在看起来确实很棒。它提供了许多选项,非常容易配置你想要的差异。

你可以通过以下方法安装:

sudo npm install -g diff-so-fancy

或者在Mac上:

brew install diff-so-fancy

然后,你可以像这样突出你的差异:

diff -u file1 file2 | diff-so-fancy

下面是另一个解决方案,它调用sed来插入适当的颜色ANSI转义序列,分别以红色、绿色和青色显示+、-和@行。

diff -u old new | sed "s/^-/$(tput setaf 1)&/; s/^+/$(tput setaf 2)&/; s/^@/$(tput setaf 6)&/; s/$/$(tput sgr0)/"

与此问题的其他解决方案不同,此解决方案没有显式地阐明ANSI转义序列。相反,它调用tput setaf和tput sgr0命令来生成ANSI转义序列,分别设置适当的颜色和重置终端属性。

要查看tput setaf的每个参数的可用颜色,使用以下命令:

for i in {0..255}; do tput setaf $i; printf %4d $i; done; tput sgr0; echo

下面是输出的样子:

下面是tput setaf和tput sgr0命令生成适当的ANSI转义序列的证据:

$ tput setaf 1 | xxd -g1
00000000: 1b 5b 33 31 6d                                   .[31m
$ tput setaf 2 | xxd -g1
00000000: 1b 5b 33 32 6d                                   .[32m
$ tput setaf 6 | xxd -g1
00000000: 1b 5b 33 36 6d                                   .[36m
$ tput sgr0 | xxd -g1
00000000: 1b 28 42 1b 5b 6d                                .(B.[m

在Ubuntu上的最新版本的Git中,你可以通过以下方式启用diff-highlight:

sudo ln -s /usr/share/doc/git/contrib/diff-highlight/diff-highlight /usr/local/bin
sudo chmod a+x /usr/share/doc/git/contrib/diff-highlight/diff-highlight

然后把这个添加到你的。gitconfig文件中:

[pager]
    log = diff-highlight | less
    show = diff-highlight | less
    diff = diff-highlight | less

脚本可能位于其他发行版中的其他地方。您可以使用locate diff-highlight来查找位置。


使用bat命令:

diff file1 file2 | bat -l diff

字符级色差: 安装ccdiff

ccdiff -r /usr/share/dict/words /tmp/new-dict


对我来说,我找到了一些解决方案:这是一个有效的解决方案

@echo off
Title a game for YouTube
explorer "https://thepythoncoding.blogspot.com/2020/11/how-to-echo-with-different-colors-in.html"
SETLOCAL EnableDelayedExpansion
for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do (
  set "DEL=%%a"
)
echo say the name of the colors, don't read

call :ColorText 0a "blue"
call :ColorText 0C "green"
call :ColorText 0b "red"
echo(
call :ColorText 19 "yellow"
call :ColorText 2F "black"
call :ColorText 4e "white"

goto :Beginoffile

:ColorText
echo off
<nul set /p ".=%DEL%" > "%~2"
findstr /v /a:%1 /R "^$" "%~2" nul
del "%~2" > nul 2>&1
goto :eof

:Beginoffile

我最喜欢的选择是vdiff <file1> <file2>函数(我忘记从哪里得到它)。

它将在Vim中并排打开两个窗口,以清楚地看到两个文件之间的差异。

vdiff () {
    if [ "${#}" -ne 2 ] ; then
        echo "vdiff requires two arguments"
        echo "  comparing dirs:  vdiff dir_a dir_b"
        echo "  comparing files: vdiff file_a file_b"
        return 1
    fi

    local left="${1}"
    local right="${2}"

    if [ -d "${left}" ] && [ -d "${right}" ]; then
        vim +"DirDiff ${left} ${right}"
    else
        vim -d "${left}" "${right}"
    fi
}

将这个脚本放在您的(.alias)或(.zshrc)中,然后使用 Vdiff <file1> <file2>. Vdiff <file1>。

例子

结果如下:


到目前为止还没有人提到delta。它支持带有语法高亮的语法彩色差异视图。