Sponsored Content
Full Discussion: Bulk Fixes Selection
Operating Systems AIX Bulk Fixes Selection Post 302430807 by dukessd on Friday 18th of June 2010 07:53:22 PM
Old 06-18-2010
No idea what your question is because it is so poorly described but my best guess would be to use smitty update_all.....
 

4 More Discussions You Might Find Interesting

1. AIX

Fixes for AIX 4.2.1

Hello, I have an old RS/6000 7013-J50 system around here with AIX 4.2 ML 4.2.1.0. I found that latest level is 4.2.1.12 or something like that. As this AIX version is very old and out of support I would like to know if anyone has the latest update CD for it and willing to provide to me? (2 Replies)
Discussion started by: Kalpazan
2 Replies

2. AIX

Install fixes on AIX 5.3

I'm new to AIX, so please excuse my ignorance! I'm trying to get the system I am now in charge of up-to-date. The 'oslevel' is 5.3.0.0--does this mean no fixes have been installed on this machine since version 5.3 was installed, or just none committed? I've run a couple of what appears to be... (5 Replies)
Discussion started by: brianmd
5 Replies

3. UNIX for Dummies Questions & Answers

Compiling with debugger flag -g fixes SEGfault (fortran90)

So the title kinda says it all. I was getting a SEGfault, so I decided to compile with the -g option to find where, and low and behold the SEGfault doesn't occur. I suppose the answer is "Problem solved! You fixed yet another SEGfault." But I am very curious how this could have happened. ... (3 Replies)
Discussion started by: drbones
3 Replies

4. UNIX for Beginners Questions & Answers

Troubleshoot awk code that fixes line breaks

Hi. I'm new to UNIX. I've searched this forum and found an example of awk that works for my file to fix line breaks. awk -F'|' 'NF != 48 || !$48 {printf $0; getline} 1' file1.csv > file2.csv However, sometimes the line is broken across three lines. But if I execute this again, it fixes that... (8 Replies)
Discussion started by: CJL57
8 Replies
Data::Stream::Bulk::Util(3pm)				User Contributed Perl Documentation			     Data::Stream::Bulk::Util(3pm)

NAME
Data::Stream::Bulk::Util - Utility functions for Data::Stream::Bulk VERSION
version 0.11 SYNOPSIS
use Data::Stream::Bulk::Util qw(array); use namespace::clean; # Wrap a list in L<Data::Stream::Bulk::Array> return bulk(qw(foo bar gorch baz)); # return an empty resultset return nil(); DESCRIPTION
This module exports convenience functions for use with Data::Stream::Bulk. EXPORTS
Sub::Exporter is used to create the "import" routine, and all of its aliasing/currying goodness is of course supported. nil Creates a new Data::Stream::Bulk::Nil object. Takes no arguments. bulk @items Creates a new Data::Stream::Bulk::Array wrapping @items. cat @streams Concatenate several streams together. Returns "nil" if no arguments are provided. filter { ... } $stream Calls "filter" on $stream with the provided filter. unique $stream Filter the stream to remove duplicates. Note that memory use may potentially scale to O(k) where k is the number of distinct items, because this is implemented in terms of a seen hash. In the future this will be optimized to be iterative for sorted streams. References are keyed by their refaddr (see "id" in Hash::Util::FieldHash). AUTHOR
Yuval Kogman <nothingmuch@woobling.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Yuval Kogman. 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-02-14 Data::Stream::Bulk::Util(3pm)
All times are GMT -4. The time now is 10:13 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy