Combining files from different directories


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Combining files from different directories
# 1  
Old 09-10-2012
Question Combining files from different directories

I have two directories, each have 27 files with same name and now I want to combine them one by one into another directory with same names.
I dont know how to use "and" for the "for loop" so it will not go in the circle.
so my code has a problem I dont know how to fix SmilieSmilieSmilieSmilie
Code:
FILES01="F1/*"
FILES02="F2/*"
for X in $FILES01 
do
	name=$(basename $X) 
	for Y in $FILES02
	do
		paste $X $Y >> combine/${name}
	done 
done

file01 has 2 column and file02 has 1 and I need to add another to columns to the paste above one is columns 2 of the AB=file01-1 and other is file02-AB.
would it be possible to combine them in the code above ?
file01
james20
hanna34
file02
40
55
desired combined file
jame20402119
hanna34553520

Last edited by joeyg; 09-10-2012 at 02:25 PM.. Reason: Fixed spelling of title
# 2  
Old 09-10-2012
Quote:
Originally Posted by A-V
I have two directories, each have 27 files with same name
As you said assuming they have same name..

Code:
FILES01="F1/*"

for X in $FILES01 
do
    name=$(basename $X) 
    paste $X /file_path/$name >> /combine/$name
done

This User Gave Thanks to pamu For This Post:
# 3  
Old 09-10-2012
worked like magic but now I realized I have another problem and that is
file01 has more than 1 line but paste combines the first line of each

how can do it in a way that it will read each line and combine them? is there a way to do it?
# 4  
Old 09-10-2012
Quote:
Originally Posted by A-V
worked like magic but now I realized I have another problem and that is
file01 has more than 1 line but paste combines the first line of each

how can do it in a way that it will read each line and combine them? is there a way to do it?
Are you want to remove first line of all the files..?
if yes use below solution..

If you want to change the row number just change the awk condition...Smilie

Code:
FILES01="F1/*"

for X in $FILES01 
do
    name=$(basename $X) 
    awk 'NR!=1' $X > temp_file # One temp file gets created. delete after the operation..
    paste temp_file /file_path/$name >> /combine/$name
done
rm temp_file

# 5  
Old 09-10-2012
I have a directory(file01) which is files have many 2 rows and unknown columns, and a directory (file02) with files with only one value
I would like to get all the columns from file01 to be printed with a same name and value for each file of file02 to be printed next to it
e.g.
this.txt (from directory file01)
james20
hanna34
this.txt (from directory file02)
50
the output is this (to directroy combine)
james2050
hanna3450
and this needs to happen for all the files in both directories
sorry for confusion

Last edited by A-V; 09-10-2012 at 10:46 AM..
# 6  
Old 09-10-2012
Try this..Smilie

Code:
FILES01="F1/*"

for X in $FILES01 
do
    name=$(basename $X) 
    value=$(cat /file_path/$name) #Yeah i know that is useless of use of cat - searching for another option. 
    awk -v VM="$value" '{ print $0, VM }' $X >> /combine/$name
done


Last edited by pamu; 09-10-2012 at 11:04 AM.. Reason: corrected..
This User Gave Thanks to pamu For This Post:
# 7  
Old 09-10-2012
it only create empty file of first files in both directory and then it goes on thinking mode Smilie
the X made all the changes Smilie thanx

Last edited by A-V; 09-10-2012 at 11:50 AM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Archiving and moving files into directories, creating directories, etc.

how can i move "dataName".sql.gz into a folder called 'database' and then move "$fileName".tar.gz * .htaccess into a folder called 'www' with the entire gzipped file being "$fileName".tar.gz? Is this doable or overly complex. so mydemo--2015-03-23-1500.tar.gz > database -... (5 Replies)
Discussion started by: wyclef
5 Replies

2. Shell Programming and Scripting

How to list all the files, directories and sub-directories in the current path except one directory?

Can anyone come up with a unix command that lists all the files, directories and sub-directories in the current directory except a folder called log.? Thank you in advance. (7 Replies)
Discussion started by: Manjunath B
7 Replies

3. Shell Programming and Scripting

Combining files

Hi I have about 108 files (text files) that end with .avg and each one of these files have a distinct name that describes what is in the file. In each file there is a set of 80 values that are tab separated. I want to combine all 108 files into ONE main file. So each file is named: 1.avg... (5 Replies)
Discussion started by: phil_heath
5 Replies

4. Shell Programming and Scripting

Combining 2 files

i am having 2 files like this file 1 1, 2, 3, 4, file2 5, 6, 7, 8, what i want do is like this i want to put all the contents for file 2 after file 1,means adding column in file1 (5 Replies)
Discussion started by: sagar_1986
5 Replies

5. UNIX for Dummies Questions & Answers

Need Help in reading N days files from a Directory & combining the files

Hi All, Request your expertise in tackling one requirement in my project,(i dont have much expertise in Shell Scripting). The requirement is as below, 1) We store the last run date of a process in a file. When the batch run the next time, it should read this file, get the last run date from... (1 Reply)
Discussion started by: dsfreddie
1 Replies

6. UNIX for Dummies Questions & Answers

List directories and sub directories recursively excluding files

Hi, Please help me, how to get all the direcotries, its sub directories and its sub directories recursively, need to exclude all the files in the process. I wanted to disply using a unix command all the directories recursively excluding files. I tried 'ls -FR' but that display files as... (3 Replies)
Discussion started by: pointers
3 Replies

7. UNIX for Dummies Questions & Answers

combining two files

Hi Gurus, I have 2 files: File1 Filename1 xx Filename1 yy Filename1 Total Filename2 xx Filename2 yy Filename2 zz Filename2 Total Filename3 xx Filename3 Total and File2: Filename1 10296 xxx Date: 09/01/08 Filename2 10296 xxx Date: 09/05/08... (36 Replies)
Discussion started by: rock1
36 Replies

8. Shell Programming and Scripting

Combining Two Files

Could someone help me reduce the number of runs for a shell program I created? I have two text files below: $ more list1.txt 01 AAA 02 BBB 03 CCC 04 DDD $ more list2.txt 01 EEE 02 FFF 03 GGG I want to combine the lines with the same number to get the below: 01 AAA 01 EEE 02... (4 Replies)
Discussion started by: stevefox
4 Replies

9. Shell Programming and Scripting

Combining Two Files

I have two files which contain data from two different transactions in the same format: <Name> - <Count> My goal is to end up with data in this format after combining the two: <Name> - <Count1> - <Count2> Is this possible to do with awk, or is there something better? Thanks... (3 Replies)
Discussion started by: bat711
3 Replies
Login or Register to Ask a Question