From 339634a0904bf530647b79d646d0bafc6a35c7f0 Mon Sep 17 00:00:00 2001 From: Steve Redka Date: Fri, 25 Jul 2025 23:17:54 +0300 Subject: [PATCH] typo: remove trailing pipes from random lines in Special Variables lesson --- tutorials/learnshell.org/en/Special Variables.md | 16 ++++++++-------- tutorials/learnshell.org/tr/Special Variables.md | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/tutorials/learnshell.org/en/Special Variables.md b/tutorials/learnshell.org/en/Special Variables.md index 08e9b3dcf..4a9eb90a0 100644 --- a/tutorials/learnshell.org/en/Special Variables.md +++ b/tutorials/learnshell.org/en/Special Variables.md @@ -4,14 +4,14 @@ Tutorial In last tutorial about shell function, you use "$1" represent the first argument passed to function_A. Moreover, here are some special variables in shell: -* `$0` - The filename of the current script.| -* `$n` - The Nth argument passed to script was invoked or function was called.| -* `$#` - The number of argument passed to script or function.| -* `$@` - All arguments passed to script or function.| -* `$*` - All arguments passed to script or function.| -* `$?` - The exit status of the last command executed.| -* `$$` - The process ID of the current shell. For shell scripts, this is the process ID under which they are executing.| -* `$!` - The process number of the last background command.| +* `$0` - The filename of the current script. +* `$n` - The Nth argument passed to script was invoked or function was called. +* `$#` - The number of argument passed to script or function. +* `$@` - All arguments passed to script or function. +* `$*` - All arguments passed to script or function. +* `$?` - The exit status of the last command executed. +* `$$` - The process ID of the current shell. For shell scripts, this is the process ID under which they are executing. +* `$!` - The process number of the last background command. ### Example: diff --git a/tutorials/learnshell.org/tr/Special Variables.md b/tutorials/learnshell.org/tr/Special Variables.md index 08e9b3dcf..4a9eb90a0 100644 --- a/tutorials/learnshell.org/tr/Special Variables.md +++ b/tutorials/learnshell.org/tr/Special Variables.md @@ -4,14 +4,14 @@ Tutorial In last tutorial about shell function, you use "$1" represent the first argument passed to function_A. Moreover, here are some special variables in shell: -* `$0` - The filename of the current script.| -* `$n` - The Nth argument passed to script was invoked or function was called.| -* `$#` - The number of argument passed to script or function.| -* `$@` - All arguments passed to script or function.| -* `$*` - All arguments passed to script or function.| -* `$?` - The exit status of the last command executed.| -* `$$` - The process ID of the current shell. For shell scripts, this is the process ID under which they are executing.| -* `$!` - The process number of the last background command.| +* `$0` - The filename of the current script. +* `$n` - The Nth argument passed to script was invoked or function was called. +* `$#` - The number of argument passed to script or function. +* `$@` - All arguments passed to script or function. +* `$*` - All arguments passed to script or function. +* `$?` - The exit status of the last command executed. +* `$$` - The process ID of the current shell. For shell scripts, this is the process ID under which they are executing. +* `$!` - The process number of the last background command. ### Example: