Patches

2004-12-30 Thread Octavian Rasnita
Hi all,

Does anyone know if there are perl modules for applying patches?

I have seen on many lists that are provided some patches for some perl
modules, and probably they can be applied automaticly under Unix using
patch for .dif files, but I cannot do this under Windows.

So, are there any perl modules that can do this job under Windows?
(Because otherwise I have to do it manually and it is not very easy).

Thank you.

Teddy


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/ http://learn.perl.org/first-response




Re: Patches

2004-12-30 Thread Randy W. Sims
Octavian Rasnita wrote:
Hi all,
Does anyone know if there are perl modules for applying patches?
I have seen on many lists that are provided some patches for some perl
modules, and probably they can be applied automaticly under Unix using
patch for .dif files, but I cannot do this under Windows.
So, are there any perl modules that can do this job under Windows?
(Because otherwise I have to do it manually and it is not very easy).
You can get a port of patch and diffutils from from the GnuWin32 
project[1]. There is also WinMerge[2].

1. http://gnuwin32.sourceforge.net/
2. http://winmerge.sourceforge.net/
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/ http://learn.perl.org/first-response



patches

2003-09-29 Thread Gupta, Sharad


Hi All,

Say i give one of my application to a customer. The customer runs it and finds a bug 
in there.
I don't want to give a fixed application again to the customer and ask him to go 
through the pain of installing it again.

Instead i create a patch and tell customer to install that patch.


The question is How to i create a patch, and how customer would install it.


Thanx,
-Sharad 



Re: patches

2003-09-29 Thread George Schlossnagle
man patch

On Monday, September 29, 2003, at 11:24  PM, Gupta, Sharad wrote:



Hi All,

Say i give one of my application to a customer. The customer runs it 
and finds a bug in there.
I don't want to give a fixed application again to the customer and ask 
him to go through the pain of installing it again.

Instead i create a patch and tell customer to install that patch.

The question is How to i create a patch, and how customer would 
install it.

Thanx,
-Sharad

-- George Schlossnagle
-- Principal Consultant
-- OmniTI Computer Consulting, Inc.
-- +1.410.872.4910 x202
-- 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E  56C2 B2B9 262F 1100 A5A0
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: remote win32 execn - os/patches/prods/diskusage/users

2003-02-12 Thread Lance
there are a couple of windows api modules you might want to look at on
www.cpan.org  On windows machines, I usually make a bat file that simply
calls my perl script, and put the bat file in the scheduled tasks list.

eg

runme.bat contains:
::
perl -w runthisscriptorelse.pl
::



And that's it!


Pradeep Goel [EMAIL PROTECTED] wrote in message
074f01c2d25c$fc998960$69734c0f@NT15105">news:074f01c2d25c$fc998960$69734c0f@NT15105...
 Unix scenario:
 a script , say S1 , is copied to all unix test machines from a server then
 run from server ( daily as a CRON job )   output is redirected to a local
 file on server then used to display on web page.

 Could someone please specify me how to get following info (commands /
 funcs ) on REMOTE Windows  machines from a server - assuming once
 administration prileges ,  without them as well - preferably without
admin
 priv.

 I am most ineterested in knowing  l how to run the script as a SCHEDULE
task
 using a scheduler .

 1) get the following

 HARDWARE/OS:
 uname -s , uname -r

 PRODUCTS:
 swlist

 PATCHES:
 ls -m $patchDir

 DISK USAGE:
 bdf -t ,
 df , df -k  ,df -t

 USERS LOGGED IN :
 who  , last

 Thanks  Regards
 Pradeep
 91-80-2052262




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: remote win32 execn - os/patches/prods/diskusage/users

2003-02-12 Thread Lance
That's right!



Thanks a lot ,Lance
Probably u have diverted ( for good)  me again to my first idea thought many
days back - but doesn't  know much about this process - u have already told
me how to run perl file usiing bat
pls tell me how to put a bat file as a schedule task .
is it simply thru - control panel - schdule task
add schwdule task  browse for that .bat file - that's it - right ?

Thanks  Regards
Pradeep


- Original Message -
From: Lance [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, February 12, 2003 2:38 PM
Subject: Re: remote win32 execn - os/patches/prods/diskusage/users




Lance [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 there are a couple of windows api modules you might want to look at on
 www.cpan.org  On windows machines, I usually make a bat file that simply
 calls my perl script, and put the bat file in the scheduled tasks list.

 eg

 runme.bat contains:
 ::
 perl -w runthisscriptorelse.pl
 ::



 And that's it!


 Pradeep Goel [EMAIL PROTECTED] wrote in message
 074f01c2d25c$fc998960$69734c0f@NT15105">news:074f01c2d25c$fc998960$69734c0f@NT15105...
  Unix scenario:
  a script , say S1 , is copied to all unix test machines from a server
then
  run from server ( daily as a CRON job )   output is redirected to a
local
  file on server then used to display on web page.
 
  Could someone please specify me how to get following info (commands /
  funcs ) on REMOTE Windows  machines from a server - assuming once
  administration prileges ,  without them as well - preferably without
 admin
  priv.
 
  I am most ineterested in knowing  l how to run the script as a SCHEDULE
 task
  using a scheduler .
 
  1) get the following
 
  HARDWARE/OS:
  uname -s , uname -r
 
  PRODUCTS:
  swlist
 
  PATCHES:
  ls -m $patchDir
 
  DISK USAGE:
  bdf -t ,
  df , df -k  ,df -t
 
  USERS LOGGED IN :
  who  , last
 
  Thanks  Regards
  Pradeep
  91-80-2052262
 





-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




remote win32 execn - os/patches/prods/diskusage/users

2003-02-11 Thread PRADEEP GOEL
Unix scenario:
a script , say S1 , is copied to all unix test machines from a server then
run from server ( daily as a CRON job )   output is redirected to a local
file on server then used to display on web page.

Could someone please specify me how to get following info (commands /
funcs ) on REMOTE Windows  machines from a server - assuming once
administration prileges ,  without them as well - preferably without admin
priv.

I am most ineterested in knowing  l how to run the script as a SCHEDULE task
using a scheduler .

1) get the following

HARDWARE/OS:
uname -s , uname -r

PRODUCTS:
swlist

PATCHES:
ls -m $patchDir

DISK USAGE:
bdf -t ,
df , df -k  ,df -t

USERS LOGGED IN :
who  , last

Thanks  Regards
Pradeep
91-80-2052262


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]