Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In Linux, I have many files and I need to copy paste the mth word of the nth line of all the files onto a plain .txt file along with the file names. So my final text file looks somewhat like this...

<FileName1> <mth word of nth line of FileName1>
<FileName2> <mth word of nth line of FileName2>
.
.
<FileNameN> <mth word of nth line of FileNameN>

Can someone please let me know the Linux command for this. Thanking you!!

share|improve this question
A better fit for http://unix.stackexchange.com/ – djthoms Jan 13 at 8:42
Try awk and then tell us how you came: gnu.org/software/gawk/manual/gawk.html – hakre Jan 13 at 12:35

closed as too localized by Emil Vikström, Harsha M V, hakre, Frank, mpapis Jan 13 at 13:11

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

#!/bin/bash

usage ()
{
  echo "usage: $0 DIR LINENO WORDNO"
  exit
}

clean ()
{
  rm -f a.txt
}

[ $1 ] || usage
clean
dir=$1
lineno=$2
wordno=$3

while read -u3 file
do
  read -a words < <(tail -n+$lineno $file)
  echo $file ${words[wordno-1]} >> a.txt
done 3< <(find $dir -type f)
share|improve this answer

How about using awk?

#!/bin/bash

# Usage: <line> <word> <files...>

awk "NR==$1 { print FILENAME \" \" \$$2 }" "${@:3}"
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.