Sponsored Content
Top Forums Shell Programming and Scripting Find to delete lines with pattern and even or odd number Post 303030882 by vgersh99 on Monday 18th of February 2019 04:28:28 PM
Old 02-18-2019
Code:
find . -maxdepth 1 -type f | awk -F'[._]' '($NF=="bam" && !($(NF-1)%2)) || ($NF=="fastq" && $(NF-1)%2) {print "rm " $0}'

When happy with the results, pipe to "sh": ..... | sh
This User Gave Thanks to vgersh99 For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Delete Lines between the pattern

Hi All, Below is my requirement. Whatever coming in between ' ', needs to delete. Input File Contents: ============== This is nice 'boy' This 'is bad boy.' Got it Expected Output =========== This is nice This Got it (4 Replies)
Discussion started by: susau_79
4 Replies

2. Shell Programming and Scripting

Find pattern a delete previous 5 lines

Hi guys, i have the follow problem i need to delete 10 row before the pattern and 1 after and the pattern row itself. file looks like: frect 9.8438 25.8681 10.625 25 . dynprop \ (# \ (call fox_execute(__self))) \ (FOX_VAR_29 \ ... (4 Replies)
Discussion started by: EjjE
4 Replies

3. Shell Programming and Scripting

sed pattern to delete lines containing a pattern, except the first occurance

Hello sed gurus. I am using ksh on Sun and have a file created by concatenating several other files. All files contain header rows. I just need to keep the first occurrence and remove all other header rows. header for file 1111 2222 3333 header for file 1111 2222 3333 header for file... (8 Replies)
Discussion started by: gary_w
8 Replies

4. Shell Programming and Scripting

delete lines starting with a pattern

i have a file sample.txt containing i want to delete lines starting with 123 neglecting spaces and tabs. but not lines containing 123. i.e. i want files sample.txt as help me thanxx (4 Replies)
Discussion started by: yashwantkumar
4 Replies

5. Shell Programming and Scripting

How to search for pattern in odd lines?

Hi friends, I am looking for sed command/script that would search for a given fixed pattern on odd lines and then if it matches, prints the matching pattern and the next line. For example, in the example below, i am looking for pattern 0 and 1011 on odd lines. ########## start of example file... (10 Replies)
Discussion started by: kaaliakahn
10 Replies

6. Shell Programming and Scripting

Print/delete the lines between two pattern.

Hello, I am having hard time figuring out how to print/delete the lines between two pattern. Here is the part of the file nastran1.bdf: RBE3 48729 32232 123456 0.30000 123 59786 59787 60114 RBE3 48732 1330 123 0.30000 123 10107... (4 Replies)
Discussion started by: dragomir
4 Replies

7. Shell Programming and Scripting

sed -- Find pattern -- print remainder -- plus lines up to pattern -- Minus pattern

The intended result should be : PDF converters 'empty line' gpdftext and pdftotext?xml version="1.0"?> xml:space="preserve"><note-content version="0.1" xmlns:/tomboy/link" xmlns:size="http://beatniksoftware.com/tomboy/size">PDF converters gpdftext and pdftotext</note-content>... (9 Replies)
Discussion started by: Klasform
9 Replies

8. UNIX for Beginners Questions & Answers

Delete duplicate like pattern lines

Hi I need to delete duplicate like pattern lines from a text file containing 2 duplicates only (one being subset of the other) using sed or awk preferably. Input: FM:Chicago:Development FM:Chicago:Development:Score SR:Cary:Testing:Testcases PM:Newyork:Scripting PM:Newyork:Scripting:Audit... (6 Replies)
Discussion started by: tech_frk
6 Replies

9. Shell Programming and Scripting

How to delete all lines before a particular pattern when the pattern is defined in a variable?

I have a file Line 1 a Line 22 Line 33 Line 1 b Line 22 Line 1 c Line 4 Line 5 I want to delete all lines before last occurrence of a line which contains something which is defined in a variable. Say a variable var contains 'Line 1', then I need the following in the output. ... (21 Replies)
Discussion started by: Soham
21 Replies

10. UNIX for Beginners Questions & Answers

awk with sed to combine lines and remove specific odd # pattern from line

In the awk piped to sed below I am trying to format file by removing the odd xxxx_digits and whitespace after, then move the even xxxx_digit to the line above it and add a space between them. There may be multiple lines in file but they are in the same format. The Filename_ID line is the last line... (4 Replies)
Discussion started by: cmccabe
4 Replies
ost::DirTree(3) 					     Library Functions Manual						   ost::DirTree(3)

NAME
ost::DirTree - A generic class to walk a hierarchical directory structure. SYNOPSIS
#include <file.h> Public Member Functions DirTree (const char *prefix, unsigned maxdepth) Construct a directory tree walk starting at the specified prefix. DirTree (unsigned maxdepth) Construct an un-opened directory tree of a known maximum depth. virtual ~DirTree () void open (const char *prefix) Open a directory tree path. void close (void) Close the directory path. char * getPath (void) Extract the next full pathname from the directory walk. unsigned perform (const char *prefix) This is used to step through the filter virtual for an entire subtree, and is used for cases where a derived DirTree class performs it's primary operations through filter rather than externally by calling getPath(). Protected Member Functions virtual bool filter (const char *file, struct stat *ino) Virtual method to filter results. Detailed Description A generic class to walk a hierarchical directory structure. Author: David Sugar dyfet@ostel.com Directory tree walking. Constructor &; Destructor Documentation ost::DirTree::DirTree (const char *prefix, unsignedmaxdepth) Construct a directory tree walk starting at the specified prefix. A maximum subdirectory depth is also specified. @param prefix to start walk. @param maxdepth subdirectory depth to examine. ost::DirTree::DirTree (unsignedmaxdepth) Construct an un-opened directory tree of a known maximum depth. Parameters: maxdepth subdirectory subdirectory depth. virtual ost::DirTree::~DirTree () [virtual] Member Function Documentation void ost::DirTree::close (void) Close the directory path. virtual bool ost::DirTree::filter (const char *file, struct stat *ino) [protected], [virtual] Virtual method to filter results. Virtual override methods should call baseclass method to assure . and .. names are stripped out. Returns: true if current filename is accepted. Parameters: file path to examine ino info of type, date, etc. char* ost::DirTree::getPath (void) Extract the next full pathname from the directory walk. When returning directories, a '/' is appended. The returned string is a buffer of MAX_PATH size. Returns: path of next subdirectory entry or NULL. void ost::DirTree::open (const char *prefix) Open a directory tree path. Parameters: prefix directory path to open. unsigned ost::DirTree::perform (const char *prefix) This is used to step through the filter virtual for an entire subtree, and is used for cases where a derived DirTree class performs it's primary operations through filter rather than externally by calling getPath(). Returns: number of files and directories examined. Parameters: prefix directory path to examine. Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::DirTree(3)
All times are GMT -4. The time now is 10:38 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy