diff options
Diffstat (limited to 'blog/dst/a/shell_scripting.html')
-rw-r--r-- | blog/dst/a/shell_scripting.html | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/blog/dst/a/shell_scripting.html b/blog/dst/a/shell_scripting.html index 741986e..b7eb3c8 100644 --- a/blog/dst/a/shell_scripting.html +++ b/blog/dst/a/shell_scripting.html @@ -3,8 +3,10 @@ <head> <base href="https://static.luevano.xyz/"> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Shell scripting tutorial video notes -- Luévano's Blog</title> - <link rel="icon" href="fa/svgs/solid/dragon.svg"> + <link rel="alternate" type="application/rss+xml" href="https://blog.luevano.xyz/rss.xml" title="Luévano's Blog RSS"> + <link rel="icon" href="images/icons/favicon.ico"> <!-- general style --> <link rel="stylesheet" type="text/css" href="css/style.css"> @@ -265,27 +267,27 @@ function_name () { <p>Functions can also take arguments and can access their individual arguments (each function will have a different “storage” for their arguments). Functions can also be nested. Here <code>exit</code> will not only will finish the function code, but also the shell script that called it, instead use <code>return</code> plus an exit code to just exit the function.</p> <p>Tags: <a href="https://blog.luevano.xyz/tag/@english.html">english</a>, <a href="https://blog.luevano.xyz/tag/@linux.html">linux</a>, <a href="https://blog.luevano.xyz/tag/@notes.html">notes</a>, <a href="https://blog.luevano.xyz/tag/@scripting.html">scripting</a>, <a href="https://blog.luevano.xyz/tag/@shell.html">shell</a></p> <p>By: David Luévano</p> -<p>Created: Sun, 14 Mar, 2021 @ 05:57 UTC, edited: Mon, 17 May, 2021 @ 20:58 UTC</p> +<p>Created: Sun, Mar 14, 2021 @ 05:57 UTC, edited: Mon, May 17, 2021 @ 20:58 UTC</p> </main> <footer> - <i class="fas fa-envelope" alt="Email"></i> - Email - <a href="mailto:david@luevano.xyz"> - david@luevano.xyz - </a> + <i class="fas fa-rss" alt="RSS"></i> + <a href="https://blog.luevano.xyz/rss.xml">https://blog.luevano.xyz/rss.xml</a> <br> - <i class="fas fa-rss" alt="RSS"></i> - RSS - <a href="https://blog.luevano.xyz/rss.xml"> - https://blog.luevano.xyz/rss.xml - </a> + <i class="fas fa-envelope" alt="Email"></i> + <a href="mailto:david@luevano.xyz">david@luevano.xyz</a> <br> <i class="fas fa-donate" alt="Donate"></i> <a href="https://luevano.xyz/donate.html">Donate</a> - <a href="https://paypal.me/dlvna"><i class="fab fa-paypal" alt="Paypal"></i></a> + <br> + + <i class="fas fa-hammer" alt="Hammer"></i> + Created with <a href="https://github.com/luevano/pyssg">pyssg</a> by David Luévano + <br> + + Copyright <i class="fas fa-copyright" alt="Copyright"></i> 2021 David Luévano Alvarado </footer> </body> </html> |