Horje
bash how to remove rows if specific field is blank Code Example
bash how to remove rows if specific field is blank
# Basic syntax:
awk -F'delimiter' '$column# != ""' input_file

# Example usage:
awk -F'\t' '$3 != ""' input_file
# This prints every line in which the 3rd tab-delimited column is 
# not blank. Change the 3 to any column and/or add other conditions 
# for your application
Source: www.unix.com




Shell

Related
first in list bash Code Example first in list bash Code Example
pscp ubuntu copy folder recursively Code Example pscp ubuntu copy folder recursively Code Example
how to change remote location Code Example how to change remote location Code Example
vncviewer display 0 Code Example vncviewer display 0 Code Example
bash delete all symlinks Code Example bash delete all symlinks Code Example

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