I am trying to insert a line at the beginning of a file named text.txt that tells how many lines were in the text. Like:
35764
43587
12905
13944
After using the command, it should redirect the file into a textwc.txt, as
4
35764
43587
12905
13944
I tried to define a variable as a wc -l
and tried to recall it into a awk
, but i haven't achieve anything. Any ideas?
1st solution: Could you please try following in
awk
.2nd solution: With 2 times reading Input_file try following.
3rd solution: Using
tac
+awk
solution.4th solution: In case your Input_file is NOT huge then try following.