• Home
  • Linux
  • Ubuntu
  • Debian
  • CentOS
  • Linux Commands
  • About Us
  • Donate
TecNStuff
Menu
  • Home
  • Linux
  • Ubuntu
  • Debian
  • CentOS
  • Linux Commands
  • About Us
  • Donate

Tag: bash

13 December 2020

How to Redirect stderr to stdout in Bash

Written by Admin
Redirect stderr to stdout in Bash
Sometimes when you are redirecting the output of a command by piping to another command or to a file, you get the error messages. There are three standard I/O streams, which are used in Bash and other Linux shells when a program is executed. Below are the streams and each representing by the numberic...
Read More about How to Redirect stderr to stdout in Bash
Linux Commands Leave a Comment
12 December 2020

Bash printf Command

Written by Admin
Bash printf
The printf command have more control over the formatting of the output. It formats and prints arguments similar to the C printf() function. In this article we will see how to use printf command bash. printf Command# Bash and other shells like Zsh and Ksh have printf by default. The standalone binary /usr/bin/printf is...
Read More about Bash printf Command
Linux Commands Leave a Comment
24 November 2020

Bash Select (Make Menus)

Written by Admin
bash select
Using the select construct you can generate menus. In this guide, we will discuss about the basics of the select construct in Bash. Bash select Construct# You can generate a menu from the list of items using the select construct. Following is the syntax for the select construct and it is similar to the...
Read More about Bash Select (Make Menus)
Linux Commands Leave a Comment
23 November 2020

Writing Comments in Bash Scripts

Written by Admin
Writing Comments in Bash Scripts
It’s a best practice to make bash script in a clean and understandable way. You can make you code clean and arrange by indenting, blocks and giving related names of variables and functions. You can also improve the code readability using comments. Comments are human-readable explanation or short description. In this article we will...
Read More about Writing Comments in Bash Scripts
Linux Commands Leave a Comment
22 November 2020

How to Increment and Decrement Variable in Bash

Written by Admin
Increment & Decrement a Variable in Bash
Variable increment and decrement is fundamental arithmetic operation in bash scripting. It’s mostly used with the for, while and until loops. Increment means adding value to variable and Decrement means subtracting from numeric variable value. This article explains multiple ways to increment or decrement a variable. Use of + and - Operators# You must...
Read More about How to Increment and Decrement Variable in Bash
Linux Commands Leave a Comment
21 November 2020

How to Check if a String Contains a Substring in Bash

Written by Admin
Check if a String Contains a Substring in Bash
While you working with string in Bash need to check whether a string contains another string. In this guide, we will show you multiple ways to check if a string contains a substring in bash scripting. Use Wildcards# It is easy to use asterisk wildcard symbols (asterisk) * to compare with the string. Wildcard...
Read More about How to Check if a String Contains a Substring in Bash
Linux Commands Leave a Comment
20 November 2020

Bash Arrays

Written by Admin
Bash Arrays
Arrays are set of data and fundamental requirement for any programming language. We can say that it’s a variable with multiple child variables. This article shows you basics and use of arrays in Bash scripts. Bash Arrays# One dimensional array with numbered index and associative array types supported in Bash. Those are referenced using...
Read More about Bash Arrays
Linux Commands Leave a Comment
13 November 2020

How to Read a File Line By Line in Bash

Written by Admin
Read a File Line By Line in Bash
At the time of writing of Bash scripts, sometimes you need to read a file line by line. In this tutorial, we will show you how to read file line by line in Bash. Syntax for Read File Line by Line# The following is the common syntax for reading a file line-by-line: Single line...
Read More about How to Read a File Line By Line in Bash
Linux Commands Leave a Comment
12 November 2020

Bash Heredoc

Written by Admin
Bash Heredoc
A Heredoc (Here document) is a redirection type which allows to pass multiline lines of input to a command. Sometimes while writing shell scripts you need to pass multiline block of code or text with the command like cat, sftp or tee. In this guide, you will learn how to use the Heredoc in...
Read More about Bash Heredoc
Linux Commands Leave a Comment
10 November 2020

Bash Concatenate Strings

Written by Admin
Bash Concatenate Strings
In any programming language the concatenation is the commonly used string operations. String concatenate is used to joining the two or more strings together by appending one to end of another string. In this tutorial, you will learn how to concatenate strings in Bash. Concatenating Strings# It’s very easy to concatenate multiple string variables...
Read More about Bash Concatenate Strings
Linux Commands Leave a Comment
1 2 3 Next →
DigitalOcean Referral Badge

Popular Posts

© 2020 TecNStuff All rights reserved. This website is using and storing cookies on your browser. By using this website you agree our Privacy Policy.  Follow us -  Twitter | Facebook