wipefs: add --all example with glob pattern (#8453)

pull/1/head
Jean-Pierre van Riel 2022-10-26 01:56:30 +02:00 committed by GitHub
parent aa372e0a32
commit 69c7cfe02c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -7,10 +7,14 @@
`sudo wipefs {{/dev/sdX}}`
- Wipe all available signatures for specified device:
- Wipe all available signature types for a specific device with no recursion into partitions:
`sudo wipefs --all {{/dev/sdX}}`
- Wipe all available signature types for the device and partitions using a glob pattern:
`sudo wipefs --all {{/dev/sdX}}*`
- Perform dry run:
`sudo wipefs --all --no-act {{/dev/sdX}}`