Bash
- 14 July
Sort CSV by Column in Bash
Bash Sort CSV by Column Using sort Command Use bash’s sort command to sort the CSV file by column. [crayon-6767ca73ae957804224446/] [crayon-6767ca73ae95d211229843/] [crayon-6767ca73ae95f424395201/] In this example, the sort command is used to sort the myFile.csv file by column. Here, the -t parameter is used to specify the field separator, which is , in the above case. […]
- 14 July
Bash Write Variable to File
Using echo Command Use the echo command with redirection operator (>) to write variable to file in Bash. [crayon-6767ca73aecd2704047650/] [crayon-6767ca73aecd6132135825/] Use the echo command with the append operator (>>) to append a variable to the end of the specified file in Bash. [crayon-6767ca73aecd7198315975/] [crayon-6767ca73aecd8540133403/] Use the echo command with the append operator (>>) to append […]
- 14 July
Bash Append to Array
Using Shorthand Operator Use the Shorthand operator to append one element to an array in Bash. [crayon-6767ca73aef36954805185/] [crayon-6767ca73aef39611101911/] First, we declared an array (my_array) with three initial elements element1, element2, and element3. Then, we used the shorthand operator (+=) to append the new_element to the end of an array. Finally, we used the echo command […]
- 05 July
Bash Get Curl Response Code
Using cUrl command with -w, -s and -o options For Get Method Use the -w or --write-out option in combination with the %{http_code} format specifier to get curl response code in Bash for get method. [crayon-6767ca73af172881653717/] [crayon-6767ca73af175102544529/] We can also rewrite it into more verbose format in case you need for better understanding. [crayon-6767ca73af176157303575/] In […]
- 03 July
sed Remove Line Containing String
Using sed Command Read the provided text file and remove lines containing string using sed command. We will not modify the input file (file.txt) but display the output on the Bash console. We can use -i option in case we want to modify input file [crayon-6767ca73af2df939355986/] [crayon-6767ca73af2e2615861396/] [crayon-6767ca73af2e3693043353/] Let’s break down command to understand it […]
- 03 July
awk Remove First Column
Using awk command with sub() method Use the awk command with sub() method to remove the first column from the given CSV file (inputFile.csv) in Bash. We will not update the input file but display the output on the Bash console. [crayon-6767ca73af47a849316362/] [crayon-6767ca73af47e255449750/] [crayon-6767ca73af47f366121316/] Here we used $1="" to replace first column with empty string […]
- 01 July
Remove Last Line from File in Bash
1. Overview In Unix-like environments, especially in scripting and programming with Bash, there might be scenarios where we need to remove the last line from a file. This operation is typical in data processing, log file management, and scripting. 2. Introduction to Problem Statement Imagine we have a text file named test.txt containing the following […]
- 01 July
Bash Remove Spaces from String
Using sed Command Use the sed command to remove spaces from string without updating the original variable in Bash. [crayon-6767ca73af887178863180/] [crayon-6767ca73af88a765898592/] First, we stored the string value in the var variable. Then, we piped it to the sed command, a stream editor performing operations on the text streams. In the above case, we used it […]
- 01 July
Bash Escape Single Quote
In this tutorial, we will see how to escape single quote in Bash. There are multiple ways to escape single quote in Bash. Let’s go through them. Using Double Quotes Use double quotes to escape single quote in Bash. [crayon-6767ca73afb59889521380/] [crayon-6767ca73afb5c859279266/] Using Backslash Character Use a backslash character (\) to escape a single quote in […]