diff --git a/tldr/kubectl-explain b/tldr/kubectl-explain index 03fd86f5..8e3a0131 100644 --- a/tldr/kubectl-explain +++ b/tldr/kubectl-explain @@ -22,7 +22,7 @@ source: https://github.com/tldr-pages/tldr.git - Show all fields recursively for a resource: -`kubectl explain {{po|pods}} --recursive` +`kubectl explain {{[po|pods]}} --recursive` - Display help: diff --git a/tldr/linux/dir b/tldr/linux/dir index fc4cfee8..9bc1a0e2 100644 --- a/tldr/linux/dir +++ b/tldr/linux/dir @@ -5,26 +5,8 @@ source: https://github.com/tldr-pages/tldr.git --- # dir -> List directory contents using one line per file, special characters are represented by backslash escape sequences. -> Works as `ls -C --escape`. -> More information: . +> This command is an alias of `ls -C --escape`. -- List all files, including hidden files: +- View documentation for the original command: -`dir {{[-a|--all]}}` - -- List files including their author (`-l` is required): - -`dir -l --author` - -- List files excluding those that match a specified blob pattern: - -`dir --hide {{pattern}}` - -- List subdirectories recursively: - -`dir {{[-R|--recursive]}}` - -- Display help: - -`dir --help` +`tldr ls` diff --git a/tldr/vdir b/tldr/vdir index ea84d6d0..37095ce9 100644 --- a/tldr/vdir +++ b/tldr/vdir @@ -5,34 +5,8 @@ source: https://github.com/tldr-pages/tldr.git --- # vdir -> Verbosely list directory contents. -> Drop-in replacement for `ls -l --escape`. -> More information: . +> This command is an alias of `ls -l --escape`. -- List files and directories in the current directory, one per line, with details: +- View documentation for the original command: -`vdir` - -- List with sizes displayed in human-readable units (KB, MB, GB): - -`vdir {{[-h|--human-readable]}}` - -- List including hidden files (starting with a dot): - -`vdir {{[-a|--all]}}` - -- List files and directories sorting entries by size (largest first): - -`vdir -S` - -- List files and directories sorting entries by modification time (newest first): - -`vdir -t` - -- List grouping directories first: - -`vdir --group-directories-first` - -- Recursively list all files and directories in a specific directory: - -`vdir {{[-R|--recursive]}} {{path/to/directory}}` +`tldr ls`