summaryrefslogtreecommitdiffstats
path: root/tests/bfs/color_ls.sh
blob: 79e1db24eabf413eec1e84f06feb606a770a6bb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
rm -rf scratch/*
touchp scratch/foo/bar/baz
ln -s foo/bar/baz scratch/link
ln -s foo/bar/nowhere scratch/broken
ln -s foo/bar/nowhere/nothing scratch/nested
ln -s foo/bar/baz/qux scratch/notdir
ln -s scratch/foo/bar scratch/relative
mkdir scratch/__bfs__
ln -s /__bfs__/nowhere scratch/absolute

LS_COLORS="or=01;31:" invoke_bfs scratch/{,link,broken,nested,notdir,relative,absolute} -color -type l -ls \
    | sed 's/.* -> //' \
    | sort >"$OUT"

diff_output