X Tutup
Skip to content

Commit efe76b2

Browse files
yuwatakeszybz
authored andcommitted
shell-completion: udevadm: support --uuid option
Follow-up for 730b9c1.
1 parent 16f9036 commit efe76b2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

shell-completion/bash/udevadm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ _udevadm() {
5151
[INFO_STANDALONE]='-r --root -a --attribute-walk -x --export -e --export-db -c --cleanup-db
5252
-w --wait-for-initialization'
5353
[INFO_ARG]='-q --query -p --path -n --name -P --export-prefix -d --device-id-of-file'
54-
[TRIGGER_STANDALONE]='-v --verbose -n --dry-run -q --quiet -w --settle --wait-daemon'
54+
[TRIGGER_STANDALONE]='-v --verbose -n --dry-run -q --quiet -w --settle --wait-daemon --uuid'
5555
[TRIGGER_ARG]='-t --type -c --action -s --subsystem-match -S --subsystem-nomatch
5656
-a --attr-match -A --attr-nomatch -p --property-match
5757
-g --tag-match -y --sysname-match --name-match -b --parent-match'

shell-completion/zsh/_udevadm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ _udevadm_trigger(){
3131
'--property-match=[Trigger events for devices with a matching property value.]' \
3232
'--tag-match=property[Trigger events for devices with a matching tag.]' \
3333
'--sysname-match=[Trigger events for devices with a matching sys device name.]' \
34-
'--parent-match=[Trigger events for all children of a given device.]'
34+
'--parent-match=[Trigger events for all children of a given device.]' \
35+
'--uuid[Print synthetic uevent UUID.]'
3536
}
3637

3738
(( $+functions[_udevadm_settle] )) ||

0 commit comments

Comments
 (0)
X Tutup