Answers for "remove certain line bash"

1

bash remove newline from string

echo "${string}"|tr 'n' ' '
Posted by: Guest on December-10-2020
0

bash how to delete a specific line from a file

# Basic syntax:
sed 'line#d' input_file
# Where line# is the line you want to delete from the input_file

# Example usage:
input_file contains:
this is
my favorite
line

sed '2d' input_file
--> this is
--> line
Posted by: Guest on October-03-2020

Python Answers by Framework

Browse Popular Code Answers by Language