• chevron_right

      Useful Bash Commands You May Not Know About

      pubsub.slavino.sk / linuxhandbook.com · Tuesday, 12 October, 2021 - 14:54 edit

    Here are some lesser known but useful bash commands that will help make the shell scripts you write cleaner and more maintainable.

    Značky: #Linux, #Bash

    • chevron_right

      What is Shebang in Linux Shell Scripting?

      pubsub.slavino.sk / linuxhandbook.com · Friday, 1 October, 2021 - 07:21 edit

    The seemingly insignificant #! characters at the beginning of a shell script has a major significance on how your script will be executed.

    Značky: #Linux, #Bash, #Explain

    • chevron_right

      Replacing a Substring With Another String in Bash

      pubsub.slavino.sk / linuxhandbook.com · Friday, 24 September, 2021 - 05:04 edit

    Learn how to replace a single or multiple occurrences of a substring inside a string in Bash.

    Značky: #Linux, #Bash

    • chevron_right

      Unusual Ways to Use Variables Inside Bash Scripts

      pubsub.slavino.sk / linuxhandbook.com · Thursday, 23 September, 2021 - 11:44 edit

    You might have used variables in Bash before, but probably not like this.

    Značky: #Bash, #Linux

    • chevron_right

      How to Check if String Contains a Substring in Bash

      pubsub.slavino.sk / linuxhandbook.com · Sunday, 12 September, 2021 - 06:33 edit

    In this bash string tutorial, you'll learn to check whether a given string contains a substring or not.

    Značky: #Linux, #Bash

    • chevron_right

      How to Concatenate Strings in Bash

      pubsub.slavino.sk / linuxhandbook.com · Saturday, 4 September, 2021 - 14:29 edit

    Learn to concatenate strings in bash shell scripts. You'll also learn to append to existing strings and combine strings and integers.

    Značky: #Linux, #Bash

    • chevron_right

      Difference Between Single and Double Quote in Bash Shell

      pubsub.slavino.sk / linuxhandbook.com · Monday, 23 August, 2021 - 12:41 edit

    Quotes are an integral part of shell scripting and Linux command but they could often be confusing for new users. This article will demystify quotes for you.

    Značky: #Explain, #Bash, #Linux

    • chevron_right

      Using Case Statements in Bash

      pubsub.slavino.sk / linuxhandbook.com · Monday, 5 July, 2021 - 14:56 edit

    Instead of a bunch of nested if else statements, using case statements can drastically reduce the number of lines in your bash script, making it easier to understand and follow the logic.

    Značky: #Linux, #Bash