#!/bin/sh ############################################################################### # Name : p4delemptypendingchangelist.sh # Purpose : Deletes all empty pending Changelists # Done for : Direct Solution # By : Ilya Rokhkin # Date : 08-Apr-2004 ############################################################################### p4 changes -s pending | /usr/bin/awk '{print $2}' > $$.txt for i in `/usr/bin/cat $$.txt` do p4 change -d -f $i done rm $$.txt echo "Press Enter to exit" read ANS
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#2 | 5044 | Ilya Rokhkin | Adding # comment for decoration | ||
#1 | 4522 | Ilya Rokhkin |
By Ilya Add my scripts |