This Was 2012 - Part 1

 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Cartoons for Geeks This Was 2012 - Part 1
# 1  
Old 12-16-2012
This Was 2012 - Part 1

2012-12-16T23:06:27+01:00
Image


Tweet
Image Image Image Image
Image

Source...
 
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. HP-UX

HP ux 11i v3 september 2012 Media

Hello Friends, I bought HP-UX 9000 series server. They shipped it with HP-UX 11.31 March 2014 version operating system. But i want to reload it with HP ux 11i v3 september 2012. I have only hardware support for this box, so i cant get it from HP site. Can any tell me where can i download it.... (4 Replies)
Discussion started by: corequad
4 Replies

2. What is on Your Mind?

Place your bits - 2012 FIFA Ballon d'Or and 2012 FIFA World Coach of the Year

I have added two new sports events. The FIFA Ballon d'Or is an association football award given annually to the player who is considered to have performed the best in the previous season. It is awarded based on votes by coaches and captains of international teams, as well as journalists from... (0 Replies)
Discussion started by: ni2
0 Replies

3. Shell Programming and Scripting

Date conversion help from dd/mm/yyyy to dd/Mon/yyyy i.e. 28/10/2012 to 28/Oct/2012

Hi I have a problem with Date format in my code. 1st I am trying to convert today's date to yesterday's using YESTERDAY3=`perl -e '@y=localtime(time()-86400); printf "%04d/%02d/%02d",$y+1900,$y+1,$y;$y;'` And once it is done I am trying to using the yesterday date in a grep command to... (3 Replies)
Discussion started by: nithinankam
3 Replies

4. What is on Your Mind?

Tennis - Wimbledon 2012

For those of you watching Wimbledon you already know that Rafael Nadal will not be in the final. There is an open event in the Event Prediction Forum. Place your bits on the guys left. This event closes on Sunday 8th July 2012. (0 Replies)
Discussion started by: ni2
0 Replies

5. Shell Programming and Scripting

gawk convert 2012-Jun-13 to 2012-06-13

I have a value in a file i am processing that has a date like "2012-Jun-13" how can I convert a date like that 2012-06-13? Am I stuck building an array of three digit months and corresponding numbers and running through the logic of figuring out the number?? or can I convert this with... (1 Reply)
Discussion started by: trey85stang
1 Replies

6. Shell Programming and Scripting

How do i compare two dates with format Jan 01, 2012 and Jan 00 2012

I need to be able to compare dates in the format of Jan 10, 2012 and Jan 10 2012. (Notice one has a comma). Then I need to find the date that is 7 days before those dates if they are equal. How can I do this in Bash. Thank ahead (4 Replies)
Discussion started by: ojthejuice
4 Replies
Login or Register to Ask a Question
AptPkg::Source(3pm)					User Contributed Perl Documentation				       AptPkg::Source(3pm)

NAME
AptPkg::Source - APT source package interface SYNOPSIS
use AptPkg::Source; DESCRIPTION
The AptPkg::Source module provides an interface to APT's source package lists. AptPkg::Source The AptPkg::Source package implements the APT pkgSrcRecords class as a hash reference (inherits from AptPkg::hash). The hash is keyed on source or binary package name and the value is an array reference of the details of matching source packages. Note that there is no iterator class, so it is not possible to get a list of all keys (with keys or each). Constructor new([SOURCELIST]) Instantiation of the object uses configuration from the $AptPkg::Config::_config object (automatically initialised if not done explicitly). If no SOURCELIST is specified, then the value of Dir::Etc::sourcelist from the configuration object is used (generally /etc/apt/sources.list). Methods find(PACK, [SRCONLY]) In a list context, return a list of source package details for the given PACK, which may either be a source package name, or the name of one of the binaries provided (unless SRCONLY is provided and true). In a scalar context, the source package name of the first entry is returned. get, exists These methods are used to implement the hashref abstraction: $obj->get($pack) and $obj->{$pack} are equivalent. The get method has the same semantics as find, but returns an array reference in a scalar context. The list returned by the find (and get) methods consists of hashes which describe each available source package (in order of discovery from the deb-src files described in sources.list). Each hash contains the following entries: Package Version Maintainer Section Strings giving the source package name, version, maintainer and section. Binaries A list of binary package names from the package. BuildDepends A hash describing the build dependencies of the package. Possible keys are: "Build-Depends", "Build-Depends-Indep", "Build-Conflicts", "Build-Conflicts-Indep". The values are a list of dependencies/conflicts with each item being a list containing the package name followed optionally by an operator and version number. Operator values evaluate to a comparison string* (>, >=, etc) or one of the AptPkg::Dep:: constants in a numeric context (see "pkgCache::Dep::DepCompareOp" in AptPkg(3pm)). *Note that this is a normalised, rather than Debian-style (>> vs >) string. Files A list of files making up the source package, each described by a hash containing the keys: "MD5Hash", "Size", "ArchiveURI", "Type". SEE ALSO
AptPkg::Config(3pm), AptPkg::Cache(3pm), AptPkg(3pm), AptPkg::hash(3pm). AUTHOR
Brendan O'Dea <bod@debian.org> perl v5.14.2 2012-03-16 AptPkg::Source(3pm)