Sponsored Content
Top Forums Shell Programming and Scripting Verifying sting format in bash Post 83668 by 98_1LE on Saturday 17th of September 2005 01:05:12 PM
Old 09-17-2005
I am sorry I did not make this clear. I need to split the date into those lines that match NNAAAA, and those that do not. For example:

Sample data:
aa1234
bb9876
root
nobody

Would produce one file or variable containing root and nobody, and another containing aa1234 and bb9876
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

bash date format

hi guys. in bash is there any other way of limiting the time displayed to HH:MM appart from (date +"%H:%M") and (date +"%R")? i want to input time into a database in the form HH:MM have tried NOW() but this gives me HH:MM:SS thanks in advance (1 Reply)
Discussion started by: vadharah
1 Replies

2. Shell Programming and Scripting

Extracting value from a sting using perl

Hi Experts, I want to extract the value of SESSIONID AND USERID from the this string using perl. XML Request },&quot;USER_PREF&quot;:{&quot;sys_lang&quot;:&quot;en-us&quot;,&quot;timezone&quot;:&quot;480&quot;,&quot;user_lang&quot;:&quot;en-us&quot;}}}</DEVICESIG></POLICYREQ>] The answer should be SessionID=1:3133050 and USERID=01451651 Please advise how... (3 Replies)
Discussion started by: namishtiwari
3 Replies

3. Shell Programming and Scripting

Assign a sting to a name?

i want to assign a anme for a string, i got the things below, but it doesn't work. MParc1=`` if then $MPrac1=`Prac1` # assign $MPrac1 to Prac1 else $MPrac1=`` #assigne $MPrac1 to nothing fi echo "${MPrac1} >>file Output: (if num is 0) Prac1 can you please... (6 Replies)
Discussion started by: mingming88
6 Replies

4. Programming

Java sting up path problem

Hi java programmers I'm a newbee to the Java. Could please help me to set the path correctly. I'm getting the following error. ----jGRASP exec: javac -g C:\Documents and Settings\bogugk\Desktop\HelloWorldApp.java ----jGRASP wedge2 error: command "javac" not found. ---- This command... (1 Reply)
Discussion started by: repinementer
1 Replies

5. Shell Programming and Scripting

How to grep sting (*) ?

Hi all, I am trying to grep something from log file. For example. i need to grep sting = "*834*1" My LOG 2010-05-05 09:27:57,649|3|ABCD834|192.168.38.72|2365|444850623031|0|8|-|0|*834*1*1499413*00853662524#|470540.7219101273026475158 2010-05-05... (3 Replies)
Discussion started by: ooilinlove
3 Replies

6. Shell Programming and Scripting

how to format a number in bash

Say I have a number x=123, but I want to it be x=000123, because I need to use it in as a file name. thanks! (2 Replies)
Discussion started by: aerosols
2 Replies

7. Shell Programming and Scripting

Inserting a string in another sting

Hi Experts, I need to insert a sting into another string at a specified position. Like the below. Regards, Tin-Tin (3 Replies)
Discussion started by: tinufarid
3 Replies

8. Shell Programming and Scripting

Replace sting in a file

Hi Gurus, I need to search and replace string <! in a file with a blank. Some how my command sed -i 's/\<\!\ is not working .. Kindly help (1 Reply)
Discussion started by: r_t_1601
1 Replies

9. Shell Programming and Scripting

Find and replace a string in group of sting

Hi, 1. I want to remove the line which contains "SUBPARTITION", but the condition is if line has ends with ")," replace with , else delete the line I was trying with the sed command i... (3 Replies)
Discussion started by: gavemani
3 Replies

10. Shell Programming and Scripting

Awk to search for sting in lines and then email.

I'm trying to use awk in a script to search for a string number in a plist file. basically its a plist that records the bandwidth usage, and if the number is greater than 3GB which is equals 3221225472 bytes, it will send me an alert by email. here is the file: =<?xml version="1.0"... (4 Replies)
Discussion started by: ivaldiz
4 Replies
Test::DZil(3pm) 					User Contributed Perl Documentation					   Test::DZil(3pm)

NAME
Test::DZil - tools for testing Dist::Zilla plugins VERSION
version 4.300020 DESCRIPTION
Test::DZil provides routines for writing tests for Dist::Zilla plugins. FUNCTIONS
Builder Minter my $tzil = Builder->from_config(...); These return class names that subclass Dist::Zilla::Dist::Builder or Dist::Zilla::Dist::Minter, respectively, with the Dist::Zilla::Tester behavior added. is_filelist is_filelist( @files_we_have, @files_we_want, $desc ); This test assertion compares two arrayrefs of filenames, taking care of slash normalization and sorting. @files_we_have may also contain objects that do Dist::Zilla::Role::File. is_yaml is_yaml( $yaml_string, $want_struct, $comment ); This test assertion deserializes the given YAML string and does a "cmp_deeply". is_json is_json( $json_string, $want_struct, $comment ); This test assertion deserializes the given JSON string and does a "cmp_deeply". dist_ini my $ini_text = dist_ini(\%root_config, @plugins); This routine returns a string that could be used to populate a simple dist.ini file. The %root_config gives data for the "root" section of the configuration. To provide a line multiple times, provide an arrayref. For example, the root section could read: { name => 'Dist-Sample', author => [ 'J. Smith <jsmith@example.com>', 'Q. Smith <qsmith@example.com>', ], } The root section is optional. Plugins can be given in a few ways: "PluginMoniker" "[ "PluginMoniker" ]" These become "[PluginMoniker]" "[ "PluginMoniker", "PluginName" ]" This becomes "[PluginMoniker / PluginName]" "[ "PluginMoniker", { ... } ]" "[ "PluginMoniker", "PluginName", { ... } ]" These use the given hashref as the parameters inside the section, with the same semantics as the root section. simple_ini This behaves exactly like "dist_ini", but it merges any given root config into a starter config, which means that you can often skip any explicit root config. The starter config may change slightly over time, but is something like this: { name => 'DZT-Sample', abstract => 'Sample DZ Dist', version => '0.001', author => 'E. Xavier Ample <example@example.org>', license => 'Perl_5', copyright_holder => 'E. Xavier Ample', } AUTHOR
Ricardo SIGNES <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ricardo SIGNES. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-21 Test::DZil(3pm)
All times are GMT -4. The time now is 05:10 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy