Search Results

Search: Posts Made By: zoite
1,746
Posted By zoite
That's what grep -i does. $ cat input.txt...
That's what grep -i does.


$ cat input.txt
input.txt
-----------
38Nhava
anotherline
Line3

$ grep -i '38NHAVA' input.txt
38Nhava
$ grep -i '38nhava' input.txt
38Nhava
13,168
Posted By zoite
How about something like the following? ...
How about something like the following?

input_file.txt

/u1
/u2
/u3



#!/bin/bash

while read line; do
row+=$(echo "$line" | tr '\n' ' ')
done < input_file.txt

nawk -v r=4 -v...
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 11:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy