Sponsored Content
Top Forums UNIX for Dummies Questions & Answers CAT multiple files according to file name Post 302912333 by bakunin on Thursday 7th of August 2014 11:26:41 AM
Old 08-07-2014
Quote:
Originally Posted by quakesrus
I now just need to script around this command so that I can loop through all groups of files (XX.YYYY..ZZZ.2014.001.*, XX.YYYY..ZZZ.2014.002.*,... XX.YYYY..ZZZ.2014.365.*) that I need to concatenate instead of having to cat each group manually.
This is rather easy. Notice that the following is only a sketch, add error reporting to it to your hearts content:

Code:
#! /usr/bin/ksh

typeset -i   iCnt=1
typeset -ZR3 chCnt=""
typeset    chFileMask="XX.YYYY..ZZZ.2014"

while [ $iCnt -le 365 ] ; do
     chCnt=$iCnt
     cat "${chFileMask}.${chCnt}."* > "${chFileMask}.${chCnt}"
     (( iCnt += 1 ))
done

exit 0

The "-ZR3" makes a right-justified, zerofilles string. Feeding it "1" as content makes it "001", etc..

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Cat'ing a multiple line file to one line

I am writing a script that is running a loop on one file to obtain records from another file. Using egrep, I am finding matching records in file b, then outputing feilds of both into another file. **************************** filea=this.txt fileb=that.txt cat $filea | while read line do... (1 Reply)
Discussion started by: djsal
1 Replies

2. UNIX for Dummies Questions & Answers

cat multiple files questions

Hi-- I'm trying to figure out how to use cat more wisely. I have the following command, which works, but I'd like to understand how to get it to work more clearly and efficiently. cat 'my file.001' 'my file.002' 'my file.003' 'my file.004' 'my file.005' 'my file.006' 'my file.007' 'my... (6 Replies)
Discussion started by: rlinsurf
6 Replies

3. Shell Programming and Scripting

cat certain files in directories to files named after the dir?

Hi all, I have a directory with many subdirectories each named like so: KOG0001, KOG0002, ...KOG9999. Each of these subdirectories contain a variable number two kinds of files (nuc and prot) named like so: Capitella_sp_nuc_hits.fasta (nuc) and Capitella_sp_prot_hits.fasta (prot). The... (2 Replies)
Discussion started by: kmkocot
2 Replies

4. Shell Programming and Scripting

bash: cat multiple files together except first line?

Hopefully the title summarized what I need help with. I have multiple files that I would like to concatenate in bash. ie: cat file1 file2 file3 > bigfile except I do not want to include the first line from each file (). Any help? Thanks. (6 Replies)
Discussion started by: sanimfj
6 Replies

5. Shell Programming and Scripting

.sh script / Check for file in two directories then cat the files

Hi, Here is what i'm trying to do, -Check in two directories for a user inputed filename -Then cat all the version found of the file to the current screen I am a total nembie to programming, here what i have done so far.... #!/bin/bash #Check in /home/loonatic and /var/named/master... (2 Replies)
Discussion started by: Loonatic
2 Replies

6. UNIX Desktop Questions & Answers

trying to cat multiple pairs of files

I have a number of files in a directory named like this: fooP1, fooN1, fooP2, fooN2 ... fooP(i), fooN(i). I'd like to know how to combine each P and N pair into a single file, foo(i) TIA John Balwit (1 Reply)
Discussion started by: balwit
1 Replies

7. UNIX for Dummies Questions & Answers

Cat files based on file name

Bros, I have list of files 20140916_registeredshop.csv 20140916_datavisit.csv 20140915_registeredshop.csv 20140915_datavisit.csv 20140914_registeredshop.csv 20140914_datavisit.csv 20140913_registeredshop.csv 20140913_datavisit.csv 20140912_registeredshop.csv 20140912_datavisit.csv ... (1 Reply)
Discussion started by: radius
1 Replies

8. UNIX for Dummies Questions & Answers

Is there any way to cat multiple files and show filenames?

Hi, Is there any way to do a cat * where it shows the name of each file in the process? Similar to what more does below? $ more ?.sql :::::::::::::: 1.sql :::::::::::::: set linesize 200 select db_unique_name, cast( from_tz( cast(... (5 Replies)
Discussion started by: newbie_01
5 Replies

9. Shell Programming and Scripting

Cat files listed in text file and redirect to new directory with same filename

I have a directory that is restricted and I cannot just copy the files need, but I can cat them and redirect them to a new directory. The files all have the date listed in them. If I perform a long listing and grep for the date (150620) I can redirect that output to a text file. Now I need to... (5 Replies)
Discussion started by: trigger467
5 Replies

10. UNIX for Beginners Questions & Answers

Merge multiple columns into one using cat

I will like to merge several files using 'cat', but I observe the output is not consistent. the merge begins at the last line of the first file. file1.txt: 1234 1234 1234 file2.txt: aaaa bbbb cccc dddd cat file1.txt file2.txt > file3.txt file3.txt: 1234 1234 1234aaaa bbbb cccc... (13 Replies)
Discussion started by: geomarine
13 Replies
1.1.10-29.EL7(8)					  System Administration Utilities					  1.1.10-29.EL7(8)

NAME
1.1.10-29.el7 - Part of the Pacemaker cluster resource manager SYNOPSIS
crm_report -f "YYYY-M-D H:M:S" [-t "YYYY-M-D H:M:S"] [additional options] [dest] DESCRIPTION
crm_report - Create a tarball containing everything needed when reporting cluster problems OPTIONS
-V increase verbosity -v,--version software version --features software features -f, --from time time to start from: "YYYY-M-D H:M:S" (do not forget the quotes) -t, --to time time to finish at (default: now) -T, --cts test CTS test or set of tests to extract --cts-log CTS master logfile -n, --nodes nodes node names for this cluster only needed if the cluster is not active on the current machine accepts both -n "a b" and -n a -n b -l, --logfile file log file to collect, normally this will be determined automatically -p patt additional regular expression to match variables to be removed (default: "passw.*") -L patt additional regular expression to match in log files for analysis (default: CRIT: ERROR:) -M collect only the logs specified by -l -S, --single-node single node operation; don't try to start report collectors on other nodes -c, --cluster type force the cluster type (corosync,openais,heartbeat,logmaster) -A, --openais force the cluster type to be OpenAIS -C, --corosync force the cluster type to be CoroSync -H, --heartbeat force the cluster type to be Heartbeat -u, --user user ssh username for cluster nodes (default: root) -D, --depth search depth to use when attempting to locate files -e, --rsh specify the remote shell to use (default: ssh -T) --dest a custom destination directory/file dest a custom destination directory/file EXAMPLES
crm_report -f "2011-12-14 13:05:00" unexplained-apache-failure crm_report -f 2011-12-14 -t 2011-12-15 something-that-took-multi- ple-days crm_report -f 13:05:00 -t 13:12:00 brief-outage 1.1.10-29.el7 - 368c726 June 2014 1.1.10-29.EL7(8)
All times are GMT -4. The time now is 02:03 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy