From 4b8f18a924dc6a646d529a2d12f82b906a89353b Mon Sep 17 00:00:00 2001 From: Michael D Date: Wed, 11 Oct 2023 09:51:11 +0200 Subject: [PATCH] windows/dir: update page (#10913) * windows: dir: add "bare" format Add "dir /B" to the cheat sheet. It is quite useful for creating file lists, playlists and the like, without having to manually mangle the output. * Change parameters to lowercase and reword description --- pages/windows/dir.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pages/windows/dir.md b/pages/windows/dir.md index 5e38507c2..9aec8e4a2 100644 --- a/pages/windows/dir.md +++ b/pages/windows/dir.md @@ -13,8 +13,12 @@ - Show the contents of the current directory, including hidden ones: -`dir /A` +`dir /a` - Show the contents of a given directory, including hidden ones: -`dir {{path\to\directory}} /A` +`dir {{path\to\directory}} /a` + +- Show a bare list of directories and files, with no additional information: + +`dir /b`