blob: ad5ed4fa3d4702fdc525fc9c4bff4627268df4c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/usr/bin/env zsh
## vim:ft=zsh
typeset file dir
typeset PDIR=$HOME/packages
typeset -a sfpath spath conflict
is_in_path () {
typeset -i ret=1
typeset dir
typeset file=$1
shift
for dir in $@; {
if [[ -e $dir/$file ]] {
ret=0
echo $dir/$file
}
}
return $ret
}
sfpath=(${fpath:#$HOME*})
spath=(${path:#$HOME*})
for file in $PDIR/{*/provides/zsh/completions/*(N),zsh/etc/completions/*(N)}; {
conflict=($(is_in_path ${file:t} $sfpath))
if (( ? == 0 )) {
echo "conflict: $file <-> ${(j:, :)conflict}"
}
}
for file in $PDIR/*/bin/*(N); {
conflict=($(is_in_path ${file:t} $spath))
if (( ? == 0 )) {
echo "conflict: $file <-> ${(j:, :)conflict}"
}
}
|