From ea359b54192826e97ed481550bb59989b29fbefe Mon Sep 17 00:00:00 2001 From: ae7th <74071029+AetherSky-arch@users.noreply.github.com> Date: Fri, 7 Mar 2025 07:39:27 +0100 Subject: [PATCH] uname: add shortform options (#15856) use {{[-short|--long]}} syntax for options instead of only displaying short formats --- pages/linux/uname.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pages/linux/uname.md b/pages/linux/uname.md index 70a175e44a..f685a3aab7 100644 --- a/pages/linux/uname.md +++ b/pages/linux/uname.md @@ -5,32 +5,32 @@ - Print all information: -`uname --all` +`uname {{[-a|--all]}}` - Print the current kernel name: -`uname --kernel-name` +`uname {{[-s|--kernel-name]}}` - Print the current network node host name: -`uname --nodename` +`uname {{[-n|--nodename]}}` - Print the current kernel release: -`uname --kernel-release` +`uname {{[-r|--kernel-release]}}` - Print the current kernel version: -`uname --kernel-version` +`uname {{[-v|--kernel-version]}}` - Print the current machine hardware name: -`uname --machine` +`uname {{[-m|--machine]}}` - Print the current processor type: -`uname --processor` +`uname {{[-p|--processsor]}}` - Print the current operating system name: -`uname --operating-system` +`uname {{[-o|--operating-system]}}`