Sponsored Content
Top Forums Shell Programming and Scripting Value Too Great for Base Error, Explanation and Workout needed Post 302875547 by Chubler_XL on Tuesday 19th of November 2013 07:28:16 PM
Old 11-19-2013
Apologies the issue asserts it's self when you look at recent dates eg: 2013-11-19
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sed command explanation needed

Hi, Could you please explain me the below statement -- phrase wise. sed -e :a -e '$q;N;'$cnt',$D;ba' abc.txt > xyz.txt if suppose $cnt contains value: 10 it copies last 9 lines of abc.txt to xyz.txt why it is copying last 9 rather than 10. and also what is ba and $D over there in... (4 Replies)
Discussion started by: subbukns
4 Replies

2. Shell Programming and Scripting

Windows driver needed for 1000 base tx card (HP)

First of all, excuse my ignorance in my questions, but truth is, I know nothing about Unix. I have recently purchased some A7012A's (dual port, 1000 base T/X) gigabit cards and need to use them in a windows environment. I am trying to see if it is possible to have drivers written for the card... (0 Replies)
Discussion started by: poaking
0 Replies

3. UNIX for Dummies Questions & Answers

Exec explanation needed

Hello! I want to read a file line by line and have each line in a variable. I have found the following code. #!/bin/bash exec 3< data while read <&3 do echo "The number is $REPLY" a.out "$REPLY" done exec 3>&- I don't understand the use of exec and its arguments, though having read... (3 Replies)
Discussion started by: myle
3 Replies

4. UNIX for Advanced & Expert Users

Which Base Level Filesets needed by a specific program?

hello... thats a great forum btw :) my problem is that I need a list of the Base Level Filesets (BLF) which are needed by a specific program. Is there any command/tool which shows me that? during the installation I can choose "Preview only" so that I can see what BLF´s are missing etc but... (4 Replies)
Discussion started by: cypher82
4 Replies

5. Solaris

showrev output explanation needed

hi this is the output of showrev command from my sun blade 150 machine. bash-3.00# showrev Hostname: u15_9 Hostid: 83685284 Release: 5.10 Kernel architecture: sun4u Application architecture: sparc Hardware provider: Sun_Microsystems Domain: sun.com Kernel version: SunOS 5.10... (1 Reply)
Discussion started by: kingston
1 Replies

6. Shell Programming and Scripting

Explanation Needed

Hi all, I'm very new to UNIX. I have got a coding, where i dont understand the below part. Could someone please explain it in detail? awk 'NR > 1; NR == 1 { S = $0 } END { print S }' $textfile.bak > $textfile could someone explain what awk 'NR > 1; NR == 1 { S = $0 } END { print S }' ... (1 Reply)
Discussion started by: raghulshekar
1 Replies

7. Programming

Python 3.1 TypeError explanation needed

Could someone explain why Python 3.1 errors out below? Do I need an additional module that's not required in 3.2 perhaps? I need to use 3.1 as it's the version available on a server I am using. Python 3.2.1rc1 (default, May 18 2011, 11:01:17) on linux2 Type "help", "copyright", "credits"... (0 Replies)
Discussion started by: jelloir
0 Replies

8. UNIX for Advanced & Expert Users

Grep - Explanation needed.

grep -E '^(++){5}5000' <file_name> this command searches value 5000 in only 6th column from provided file where pipe ( | )is delimiter which separate columns... can some one plz explain me what '^(++){5}5000' actually does..? :confused: (1 Reply)
Discussion started by: Killer420
1 Replies

9. Shell Programming and Scripting

Little explanation needed on array

I had gone through..google search.....and unix user post.......where I found so many ways of accessing files..... suppose if I am having 4 files, each file is having 3 columns, and I want to use each field of each column, then how can I use it.. how can I create array for each file's each column,... (8 Replies)
Discussion started by: Dona Clara
8 Replies

10. UNIX for Beginners Questions & Answers

Explanation for Scripts Inner Workings Needed

#!/bin/bash n=$l; typeset -a v x=$(< input.dat) check(){ if; then sed 's/Test/Proc/g' file.sh >fl.sh else exit 13 fi } check $n while ; do x=`expr $x -l` v=$x done less fi.sh l>/dev/null&& echo yes || exit 1 echo v= ${v } exit 0 I have file.sh and input.dat in the current... (3 Replies)
Discussion started by: bananasprite
3 Replies
PPIx::Regexp::Token::Modifier(3)			User Contributed Perl Documentation			  PPIx::Regexp::Token::Modifier(3)

NAME
PPIx::Regexp::Token::Modifier - Represent modifiers. SYNOPSIS
use PPIx::Regexp::Dumper; PPIx::Regexp::Dumper->new( 'qr{foo}smx' ) ->print(); The trailing "smx" will be represented by this class. This class also represents the whole of things like "(?ismx)". But the modifiers in something like "(?i:foo)" are represented by a PPIx::Regexp::Token::GroupType::Modifier. INHERITANCE
"PPIx::Regexp::Token::Modifier" is a PPIx::Regexp::Token. "PPIx::Regexp::Token::Modifier" is the parent of PPIx::Regexp::Token::GroupType::Modifier. DESCRIPTION
This class represents modifier characters at the end of the regular expression. For example, in "qr{foo}smx" this class would represent the terminal "smx". The "a", "aa", "d", "l", and "u" modifiers The "a", "aa", "d", "l", and "u" modifiers, introduced starting in Perl 5.13.6, are used to force either Unicode pattern semantics ("u"), locale semantics ("l") default semantics ("d" the traditional Perl semantics, which can also mean 'dual' since it means Unicode if the string's UTF-8 bit is on, and locale if the UTF-8 bit is off), or restricted default semantics ("a"). These are mutually exclusive, and only one can be asserted at a time. Asserting any of these overrides the inherited value of any of the others. The "asserted()" method reports as asserted the last one it sees, or none of them if it has seen none. For example, given "PPIx::Regexp::Token::Modifier" $elem representing the invalid regular expression fragment "(?dul)", "$elem->asserted( 'l' )" would return true, but "$elem->asserted( 'u' )" would return false. Note that "$elem->negated( 'u' )" would also return false, since "u" is not explicitly negated. If $elem represented regular expression fragment "(?i)", "$elem->asserted( 'd' )" would return false, since even though "d" represents the default behavior it is not explicitly asserted. The caret ("^") modifier Calling "^" a modifier is a bit of a misnomer. The "(?^...)" construction was introduced in Perl 5.13.6, to prevent the inheritance of modifiers. The documentation calls the caret a shorthand equivalent for "d-imsx", and that it the way this class handles it. For example, given "PPIx::Regexp::Token::Modifier" $elem representing regular expression fragment "(?^i)", "$elem->asserted( 'd' )" would return true, since in the absence of an explicit "l" or "u" this class considers the "^" to explicitly assert "d". Note that if this is retracted before Perl 5.14 is released, this support will disappear. See "NOTICE" in PPIx::Regexp for some explanation. METHODS
This class provides the following public methods. Methods not documented here are private, and unsupported in the sense that the author reserves the right to change or remove them without notice. asserts $token->asserts( 'i' ) and print "token asserts i"; foreach ( $token->asserts() ) { print "token asserts $_ " } This method returns true if the token explicitly asserts the given modifier. The example would return true for the modifier in "(?i:foo)", but false for "(?-i:foo)". If called without an argument, or with an undef argument, all modifiers explicitly asserted by this token are returned. match_semantics my $sem = $token->match_semantics(); defined $sem or $sem = 'undefined'; print "This token has $sem match semantics "; This method returns the match semantics asserted by the token, as one of the strings 'a', 'aa', 'd', 'l', or 'u'. If no explicit match semantics are asserted, this method returns "undef". modifiers my %mods = $token->modifiers(); Returns all modifiers asserted or negated by this token, and the values set (true for asserted, false for negated). If called in scalar context, returns a reference to a hash containing the values. negates $token->negates( 'i' ) and print "token negates i "; foreach ( $token->negates() ) { print "token negates $_ " } This method returns true if the token explicitly negates the given modifier. The example would return true for the modifier in "(?-i:foo)", but false for "(?i:foo)". If called without an argument, or with an undef argument, all modifiers explicitly negated by this token are returned. SUPPORT
Support is by the author. Please file bug reports at <http://rt.cpan.org>, or in electronic mail to the author. AUTHOR
Thomas R. Wyant, III wyant at cpan dot org COPYRIGHT AND LICENSE
Copyright (C) 2009-2013 by Thomas R. Wyant, III This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5.10.0. For more details, see the full text of the licenses in the directory LICENSES. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. perl v5.16.3 2014-06-10 PPIx::Regexp::Token::Modifier(3)
All times are GMT -4. The time now is 07:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy