repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git]
/
udev-old-kernel
/
ignore-remove.sh
blob
be9bf664b3a6e5308cc1f73d7dd4de4bb6f5e64d
1
#!/bin/sh
2
3
if
[
-z
"
$1
"
];
then
4
exit
1
5
fi
6
7
for
f
in
${DEVNAME} ${DEVLINKS}
;
do
8
if
[
-e
"/lib/udev/devices/
${f#$1}
"
];
then
9
exit
0
10
fi
11
done
12
13
exit
1