Sponsored Content
Top Forums Shell Programming and Scripting parsing filename and grabbing specific string patterns Post 302498223 by rukasetsuna on Sunday 20th of February 2011 03:40:01 PM
Old 02-20-2011
parsing filename and grabbing specific string patterns

Hi guys...Wow I just composed a huge post and it got erased as I was logged out automatically
Anyways I hope someone can help me out here.
So the task I'm working on is like this
I have a bunch of files that I care about sitting in a directory say $HOME/files

Now my job is to go and loop over all these files and then grab parts of each filename and check if the parsed string exists in a parameter that is
passed to the script say $4

The filename parsing has the following rules

1: testfile_string1_string2_20100232to201130203.csv
parsed value should be "string1_string2"

2: testfile_string3_string4.csv
parsed value should be "string3_string4.csv"

3: testfile_string5_string6_string7_20113203to20110423.csv
parsed value should be "string5_string6_string7"

So the idea here is to grab the part of the filename after the first "_" upto a digit "20103232" eg 1 , eg3
Or the end of the string in case numeric values aren't there eg 2

I've been trying all day but I'm not able to find an answer for this
I'ld appreciate if one of you experts would help me out.

Thanks
Ruka
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Filename Patterns in mget

I was writing a shell script for FTPing files for a machine. now i am facing a problem in it. The problem is i want to ftp files which do not end with a particular pattern. The pattern is file should not end with .dd ( d=digit ) for eg: say i have files file file.01 file.02 ... (0 Replies)
Discussion started by: dipendra_g
0 Replies

2. Shell Programming and Scripting

Parsing string using specific delimiter

Hi, I'm wondering what is the best way to parse out a long string that has a specific deliminator and outputting each token between the delim on a newline? i.e. input text1,text2,text3,tex4 i.e. output text1 text2 text3 text4 (8 Replies)
Discussion started by: primp
8 Replies

3. Shell Programming and Scripting

Parsing of file for Report Generation (String parsing and splitting)

Hey guys, I have this file generated by me... i want to create some HTML output from it. The problem is that i am really confused about how do I go about reading the file. The file is in the following format: TID1 Name1 ATime=xx AResult=yyy AExpected=yyy BTime=xx BResult=yyy... (8 Replies)
Discussion started by: umar.shaikh
8 Replies

4. Shell Programming and Scripting

grabbing specific column perl

Alright, I'm new to Perl so be gentle. Given the following script: ---- open(file, "<file.txt"); @lines = <file>; close(file); $var = print $lines; ---- So I'm printing line 18 of the file "file.txt". I now want the 5th column, minus the forward slash. The line looks like this: ... (2 Replies)
Discussion started by: wxornot
2 Replies

5. Shell Programming and Scripting

grabbing filename from text file....should be easy!

Quick question...I'm trying to grab the .tif file name from this output from our fax server. What is the best way i can do this in a bash script? I have been looking at regular expressions with bash or using awk but having some trouble. thanks! The only output i want is... (5 Replies)
Discussion started by: kuliksco
5 Replies

6. UNIX for Dummies Questions & Answers

replace multiple patterns in a string/filename

This should be somewhat simple, but I need some help with this one. I have a bunch of files with tags on the end like so... Filename {tag1}.ext Filename2 {tag1} {tag2}.ext I want to hold in a variable just the filename with all the " {tag}" removed. The tag can be anything so I'm looking... (4 Replies)
Discussion started by: kerppz
4 Replies

7. Shell Programming and Scripting

Help parsing filename with bash script

Hi all! Looking for some help parsing filenames in bash. I have a directory full of files named "livingroom-110111105637.avi". The format is always date and time (yymmddhhmmss). I'm looking to parse the filenames so they are a little more easily readable. Maybe rename them to... (4 Replies)
Discussion started by: mtehonica
4 Replies

8. Shell Programming and Scripting

Html parsing - get line after specific string till a point

Hi all :) It sounds complex, for example I want to find the whole html file (there are 5 entries of this string and I need to get all of them) for the string "<td class="contentheading" width="100%">", get the next line from it only till the point that says "</td>", plus removing \t (tabs) ... (6 Replies)
Discussion started by: hakermania
6 Replies

9. Shell Programming and Scripting

Specific string parsing in Linux/UNIX

Hi, I have a string which can be completely unstructred. I am looking to parse out values within that String. Here is an example <Random Strings> String1=<some number a> String2=<some number b> String3=<some number c> Satish=<some number d> String4=<some number e> I only want to parse out... (1 Reply)
Discussion started by: satishrao
1 Replies

10. Shell Programming and Scripting

Parsing a file with different patterns

I have a text file like this , where the same set of three lines repeat with different values. INFO: processing now 03/25/2015-00:06:05 03/25/2015-00:16:04 ------Invoking myexe table=table1 INFO 25-03 00:20:26,801 - Finished processing (I=0, O=57, R=57, W=57, U=0, E=0) INFO: processing... (4 Replies)
Discussion started by: Lakshmikumari
4 Replies
Utils(n)						       Tix Built-In Commands							  Utils(n)

__________________________________________________________________________________________________________________________________________________

NAME
tixUtils - Utility commands in Tix. SYNOPSIS
tixDescendants pathName tixDisableAll pathName tixEnableAll pathName tixPushGrab ?-global? window tixPopGrab _________________________________________________________________ DESCRIPTION
tixDescendants pathName Returns a list of all the descendant widgets of pathName plus pathName itself. tixDisableAll pathName Disables pathName and all its descendants. tixEnableAll pathName Enables pathName and all its descendants. tixPushGrab ?-global? window The tixPushGrab and tixPopGrab commands allows you to perform "cascade-grabbing". tixPushGrab calls the grab(n) command on window and saves window on a grabbing stack. tixPopGrab tixPopGrab pops the top-most element from the grabbing stack and release its grab. If the grabbing stack is not empty, then tixPop- Grab will execute grab(n) on the current top-most element in the grabbing stack. NOTES
Some Tix widgets (for example, tixComboBox and tixPanedWindow) grabs the screen on certain occasions using tixPushGrab and tixPopGrab. Therefore, if you need to grab the screen when these widgets are present, you should also call tixPushGrab and tixPopGrab in place of the Tk grab and grab release commands. Otherwise, the behavior of these widgets may be undefined. KEYWORDS
Tix(n), grab(n) Tix 4.0 Utils(n)
All times are GMT -4. The time now is 01:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy