Horje
bash print specific range of rows from a file Code Example
bash print specific range of rows from a file
# Basic syntax with sed:
sed -n 'start,endp' input_file.txt
# Where start and end are numbers that inclusively define the range. E.g.
sed -n '17,23p' input_file.txt # To print the [17-23] rows




Shell

Related
reload shell command Code Example reload shell command Code Example
Git checkout remote branch in git Code Example Git checkout remote branch in git Code Example
installing anbox in manjaro Code Example installing anbox in manjaro Code Example
adb shell proxy Code Example adb shell proxy Code Example
npm install multiple dependencies Code Example npm install multiple dependencies Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10