Sponsored Content
Top Forums Shell Programming and Scripting awk and POSIX character class Post 302459368 by anthalamus on Monday 4th of October 2010 01:22:42 PM
Old 10-04-2010
thanks guys,
here's the revised version:

Code:
echo "./comparecdna.summary" | awk '/^[.][/]compare[[:alnum:]]+[.]summary$/' # returns: ./comparecdna.summary
echo "./compare_cdna.summary" | awk '/^[.][/]compare_[[:alnum:]]+[.]summary$/' # returns: ./compare_cdna.summary
echo "./compare_cdna_peptide.summary" | awk '/^[.][/]compare_[_[:alnum:]]+[.]summary$/' # returns: ./compare_cdna_peptide.summary
[:word:] is non-standard POSIX apparently

alister, the "/" seems not need be escaped here, maybe because it's by itself within the []?

pravin27, doesn't "[[:alpha:]].+" means "a letter followed by any characters once or more" ?
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

car class (not school class)

im just trying to have some fun and kill some time writing a c++ program that has a person type in a car make and model then gives them a year and a price. or something like that. i always have problems getting it goin but once the ball is rolling im usually pretty good. anyone wanna help me out? ... (1 Reply)
Discussion started by: rickym2626
1 Replies

2. UNIX for Dummies Questions & Answers

awk and sed class

awk and sed are made for unix admin. does anyone know which company offer awk or sed course ? (3 Replies)
Discussion started by: tjmannonline
3 Replies

3. Programming

C++ class definition with a member of the same class

Hi, i have a question about C++. Is it possible to declare a class with a member ot the same class? For example, a linked list or i want to convert this C code to C++ class (Elemento) typedef struct elemento { char name; char value; List<struct elemento> ltElementos; ... (7 Replies)
Discussion started by: pogdorica
7 Replies

4. Programming

static use for class inside the same class c++

Hi, I believe the next code is wrong: class Egg { Egg e; int i; Egg(int ii=0) : i(ii) {} }; because you would end up with an endless definition (memory allocation) of Egg objects, thus int i. Ok, so God Eckel proposes for a singleton: class Egg { static Egg e; int... (5 Replies)
Discussion started by: xavipoes
5 Replies

5. UNIX for Advanced & Expert Users

Get pointer for existing device class (struct class) in Linux kernel module

Hi all! I am trying to register a device in an existing device class, but I am having trouble getting the pointer to an existing class. I can create a class in a module, get the pointer to it and then use it to register the device with: *cl = class_create(THIS_MODULE, className);... (0 Replies)
Discussion started by: hdaniel@ualg.pt
0 Replies

6. Programming

Size of Derived class, upon virtual base class inheritance

I have the two class definition as follows. class A { public: int a; }; class B : virtual public A{ }; The size of class A is shown as 4, and size of class B is shown as 16. Why is this effect ?. (2 Replies)
Discussion started by: techmonk
2 Replies

7. Shell Programming and Scripting

Match string against character class in bash

Hello, I want to check whether string has only numeric characters. The following code doesn't work for me #!/usr/local/bin/bash if ]]; then echo "true" else echo "False" fi # ./yyy '346' False # ./yyy 'aaa' False I'm searching for solution using character classes, not regex.... (5 Replies)
Discussion started by: urello
5 Replies

8. Programming

C++ : Base class member function not accessible from derived class

Hello All, I am a learner in C++. I was testing my inheritance knowledge with following piece of code. #include <iostream> using namespace std; class base { public : void display() { cout << "In base display()" << endl; } void display(int k) {... (2 Replies)
Discussion started by: anand.shah
2 Replies

9. Shell Programming and Scripting

Regex issue with \s in character class.

Anybody have an explanation for why \s doesn't match ' ' in a character class? Here are 3 examples with the final example showing that \s in a character class (demonstrated by using egrep -o) fails: \s works outside of class.. # echo " FOO " | egrep -o '\s+\s' FOO Here is a... (6 Replies)
Discussion started by: blackrageous
6 Replies
MU-VIEW(1)                                                    General Commands Manual                                                   MU-VIEW(1)

NAME
mu_view - display an e-mail message file SYNOPSIS
mu view [options] <file> [<files>] DESCRIPTION
view is the mu sub-command for displaying an e-mail message file. It works on message files and does not require the message to be indexed in the database. The command shows some common headers (From:, To:, Cc:, Bcc:, Subject: and Date:), the list of attachments and the plain-text body of the message (if any). OPTIONS
--summary instead of displaying the full message, output a summary based upon the first lines of the message. --summary-len=<number> Number of lines to use for the summary. Default: 5. --terminate terminate messaages with a f (form-feed) characters when displaying them. This is useful when you want to further process them. BUGS
Please report bugs if you find them: http://code.google.com/p/mu0/issues/list AUTHOR
Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> SEE ALSO
mu(1) mu-index(1) User Manuals April 2012 MU-VIEW(1)
All times are GMT -4. The time now is 07:43 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy