native-programs-in-ant

Running Native Programs in Ant

Running Native Programs in Ant Ant, while extremely powerful and flexible, can’t always offer everything you want to do. If this is the case, you can use the <exec> task,…

Read more »
a-script-to-find-all-users-who-have-not-set-passwords

A script to find all users who have not set passwords

Write a script to find all users who have not set passwords. #!/usr/bin/ruby require “P4” p4 = P4.new p4.parse_forms p4.connect p4.run_users.each do |u| user = p4.fetch_user( u[ “User” ] )…

Read more »
script-to-list-the-clients-in-descending-access-date-order

Script to list the clients in descending access date order

  Write a script to list the clients in descending access date order (for deleting obsolete clients).   #!/usr/bin/ruby require “P4” p4 = P4.new p4.tagged p4.connect clients = p4.run_clients.sort {|a,b|…

Read more »
wincvs

Steps to Import Module Process by using WinCVS

Import Normally refers to the process of creating a new module in the repository by sending an entire directory structure. Module A directory hierarchy. A software project normally exists as…

Read more »
p4win-window-navigation

The P4Win Window Navigation | P4Win Navigation Guide

The P4Win Screen  The P4Win screen resembles the Windows Explorer. The following diagram points out the main portions of the screen. Each pane is described in detail in the following…

Read more »
p4win-introduction

Introduction of p4win | p4win Overview | What is p4win?

P4Win is a Windows-Explorer-style program that helps you manage files that are stored in the Perforce software configuration management system. Using P4Win, you can view files, check them in and…

Read more »