From 69c7cfe02c1eb1a363c81dc1019eac2bab8b92d5 Mon Sep 17 00:00:00 2001 From: Jean-Pierre van Riel Date: Wed, 26 Oct 2022 01:56:30 +0200 Subject: [PATCH] wipefs: add --all example with glob pattern (#8453) --- pages/linux/wipefs.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/linux/wipefs.md b/pages/linux/wipefs.md index f9554ff16..a1955e44d 100644 --- a/pages/linux/wipefs.md +++ b/pages/linux/wipefs.md @@ -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}}`