The different types of Cloud Computing are,
- Hybrid Cloud Computing Deployment Model
- Community Cloud Computing Deployment Model
- Private Cloud Computing Deployment Model
- Public Cloud Computing Deployment Model
A blog where you can explore everything about Datawarehouse, OBIEE, Informatica, Power BI, QlikView, Hadoop, Oracle SQL-PLSQL, Cognos and much more....
Sort -o
|
Filename to write sorted output to file,
if not given then write to standard output.
|
Sort –d
|
Sort in dictionary order
|
Sort –n
|
Sort in numeric order(smallest first)
|
Sort -r
|
Sort in reverse order (z on top and a
on bottom)
|
Sort –nr
|
Sort in reverse numeric
order
|
Sort +1
|
Sort starting with field 1 (starting
from 0)
|
Sort +0.50
|
Sort starting with 50th character
|
Sort +1.5
|
Sort starting with 5th character of field 1
|
Sort -c
|
To see if a file is sorted (error message
returned if not)
|
Sort -u
|
Suppress duplicate lines and output Identical
input lines once.
|
Sort -M
|
Sort by month (JAN.FEB, MAR) Note that non-months
are
sorted first and uppercase letters precede
lowercase
letters for identical months.
|
Sort -k 1
|
Sort starting with the first character of the
first field
and continuing through the end of the line.
|
Dept_id
|
Emp_name
|
10
|
CLARK
|
10
|
KING
|
10
|
MILLER
|
20
|
JONES
|
20
|
FORD
|
20
|
ADAMS
|
20
|
SMITH
|
20
|
SCOTT
|
30
|
WARD
|
30
|
TURNER
|
30
|
ALLEN
|
30
|
BLAKE
|
30
|
MARTIN
|
30
|
JAMES
|
DEPT_ID
|
EMP_NAME
|
10
|
CLARK|KING|MILLER
|
20
|
JONES|FORD|ADAMS|SMITH|SCOTT
|
30
|
WARD|TURNER|ALLEN|JAMES|BLAKE|MARTIN
|