Search Results

Search: Posts Made By: corfuitl
2,029
Posted By RudiC
Well, I've noticed that as well. Try awk ' ...
Well, I've noticed that as well. Try awk '
NR==1 {# print
next
}

{LINE[$2,$3]=$0
FREQ[$2,$3]++
...
2,029
Posted By RudiC
That's because you dropped the header line. ...
That's because you dropped the header line.

---------- Post updated at 14:21 ---------- Previous update was at 14:20 ----------

Output with header line in file:Column1 Column2 Column3 ...
2,029
Posted By RudiC
Well, try:awk ' NR==1 {print ...
Well, try:awk '
NR==1 {print
next
}

{LINE[$2,$3]=$0
FREQ[$2,$3]++
SUM[$2,$3]=$6+$7
...
2,029
Posted By RudiC
Any attempts from your side? ---------- Post...
Any attempts from your side?

---------- Post updated at 12:07 ---------- Previous update was at 12:03 ----------

And, why should line 5 be preferred to line 4? Except for field 1, they're...
1,205
Posted By Yoda
If you don't want this file listed, then check if...
If you don't want this file listed, then check if Italian file exists and write to o/p file:
#!/bin/bash

for EN_file in *en.html
do
IT_file=$( echo ${EN_file/en.html/it.html} )
...
1,205
Posted By Yoda
#!/bin/bash for EN_file in *EN.html do ...
#!/bin/bash

for EN_file in *EN.html
do
IT_file=$( echo "${EN_file}" | sed 's/_EN\.html/_IT\.html/g' )
echo "${EN_file} ${IT_file}" >> output.txt
done
2,318
Posted By gull04
Hi Corfuiti, Can you supply the directory...
Hi Corfuiti,

Can you supply the directory structure, from the directory at the top level. If the files are at the level above the directories, this is quite straight forward using something like...
Showing results 1 to 7 of 7

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