Differentiate 2 files name


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Differentiate 2 files name
# 1  
Old 04-09-2015
RedHat Differentiate 2 files name

Hello All,

I have 2 Type of files.

Code:
1. MYTEST001_RKP_DORALDO_20150402120000.zip
2. CMP001_STD001_MOGANO_RPSL_20150409_C.zip

I can receive these Two type of file at one location.

If i receive second type of file
Code:
CMP001_STD001_MOGANO_RPSL_20150409_C.zip

I have to process without connecting to database because i have all the required input.

But if i receive First kind of file
Code:
MYTEST001_RKP_DORALDO_20150402120000.zip

I need to connect to database to fetch some value depending on MYTEST001.

Is there any way to differentiate these two types of file with above given naming convention.

Thanks for your help.
# 2  
Old 04-09-2015
Code:
case "$FILENAME" in
M*)
        echo "MYTEST file"
        ;;
CMP*)
        echo "CMP file"
        ;;
esac

This User Gave Thanks to Corona688 For This Post:
# 3  
Old 04-09-2015
RedHat thw file format is not fixed.

Thanks for your reply but the files are randomly generated. except there naming convention nothing is fixed. like for the first one.
<std>_<lb>_<vend>_datewithdetails_c.zip
# 4  
Old 04-09-2015
And what format does the other kind follow?
# 5  
Old 04-10-2015
RedHat 2 files

Thanks for your reply.

First File format would be as below
Code:
<compound>_<study>_<agent>_<ana>_YYYYMMDD_(C or 1).zip

Second File format would be as below
Code:
<study>_<agent>_<ana>_YYYYMMDD(randomconstant)_(C or 1).zip

I find one way to differentiate is count the _ in filename. is there any other option.
# 6  
Old 04-10-2015
try this:

Code:
if [ "$(ls file | awk -F_ '$5~/[0-9]{8}/')" != "" ];then echo GoodFile;fi

This User Gave Thanks to protocomm For This Post:
# 7  
Old 04-10-2015
The file names in your first post don't follow your spec in post#5. There's no C nor 1 in file name 1.
protocomm's proposal is fine for your sample names, but it relies on the count of the "_" as well; So why not use that?
This User Gave Thanks to RudiC For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Compare and Differentiate Multiple Files

Im using code below comparing and getting the diff of two files. But what about multiple files? can you help me guys diff -u file1 file2|sed -n '/^---/!{/^-/s/-//p}' diff -ui file1 file2| sed -n '/^++/!{/^+/s/+//p}' Example File1: aaa bbb ccc ddd File2: bbb eee (5 Replies)
Discussion started by: kenshinhimura
5 Replies

2. Shell Programming and Scripting

How to differentiate between two machine in Unix?

how to differentiate between two machine in Unix,whether it is logged in from local machine or from Server( both may be 2 or more). Please help. (5 Replies)
Discussion started by: kpatel97
5 Replies

3. UNIX for Dummies Questions & Answers

differentiate $@ and $*

can anyone explain the difference between $* and $@? pandeeswaran@ubuntu:~/training$ bash dollarstar 1 2 3 "4 5" 6 1 2 3 4 5 6 1 2 3 4 5 6 pandeeswaran@ubuntu:~/training$ cat dollarstar #!/bin/bash for i in $@ do (4 Replies)
Discussion started by: pandeesh
4 Replies

4. Shell Programming and Scripting

differentiate between spaces and new-lines

Hi - Here's the problem I'm encountering......My script logs in to remote FTP through password-less "sftp" and must get the list of sub-directories under a given path. I know many of the unix commands don't work in "sftp" login so I cannot know which one is a "directory" and which one is a... (2 Replies)
Discussion started by: dips_ag
2 Replies

5. UNIX and Linux Applications

Differentiate between MS Word and Excel files in Unix

Hi, I want to differentiate between a MS Word and Excel file in Unix (not by extension). The condition which we are currently checking for is the pattern "\320\317\021\340" within first 40 bytes of the file. However this format is same in all MS Office files. Can somebody tell me any special... (4 Replies)
Discussion started by: phatak_rajan
4 Replies

6. Shell Programming and Scripting

Differentiate the scripts

Can anyone decribe what would be differnce between the following scripts: #nohup /bin/sh ./job 2>& 1& # ./job > nohup.out & Thanks Alvida (1 Reply)
Discussion started by: alvida
1 Replies

7. Shell Programming and Scripting

How to differentiate two tar files

Hi All, I am new to this unix stuff.I just have one doubt:suppose i have two tar files and sometimes it happens that when we just check these files from outside these two tar files look same "Eg: ls -lrt drw-r--r-- 1 oasis logadmin 37067 Apr 3 05:48 file1.tar drw-r--r-- 1 oasis ... (7 Replies)
Discussion started by: siri_14
7 Replies

8. UNIX for Dummies Questions & Answers

differentiate between a file and a device

sorry probably a beginner question but i was just wondering how unix does this as device are treated as files? (6 Replies)
Discussion started by: keith_hampson
6 Replies

9. UNIX for Dummies Questions & Answers

how to differentiate a file from a folder in a FIND?

I have to read a complete folder and if it is a file older that 7 days I have to copy it elsewhere and if it is a folder nothing to make. The way I do it: for I in `find /home/. -name "*" -mtime +7` do cp -Rf $I /home/elsewhere/. done Am I okay with the way I want to do it? Help... (3 Replies)
Discussion started by: denysQC
3 Replies

10. UNIX for Dummies Questions & Answers

How to Differentiate Between Files and Folders?

Hi All, I'm a rookie using HPUX and I know this is going to sound like a bonehead question, but when I list the contents of a directory, how can I determine which objects are files and which are folders? I'm using the ll and ls commands to lists the contents. So far I've been determining the... (6 Replies)
Discussion started by: dgower2
6 Replies
Login or Register to Ask a Question