Changeset 839 in ProjectBuilder
- Timestamp:
- Aug 20, 2009, 3:23:23 PM (15 years ago)
- Location:
- devel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb-modules/bin/pbdistrocheck
r756 r839 17 17 my %opts; # CLI Options 18 18 19 GetOptions("verbose|v+" => \$opts{'v'}); 19 GetOptions( 20 "verbose|v+" => \$opts{'v'}, 21 "description|d" => \$opts{'d'} 22 ); 20 23 if (defined $opts{'v'}) { 21 24 $pbdebug = $opts{'v'}; … … 29 32 30 33 my ($ddir, $dver, $dfam, $dtype, $pbsuf, $pbupd, $arch) = pb_distro_init(); 31 print "distro tuple: ".join(',',($ddir, $dver, $dfam, $dtype, $pbsuf, $pbupd, $arch))."\n"; 34 if (defined $opts{'d'}) { 35 print "\u$ddir $dver\n"; 36 } else { 37 print "distro tuple: ".join(',',($ddir, $dver, $dfam, $dtype, $pbsuf, $pbupd, $arch))."\n"; 38 } -
devel/pb/bin/pbg
r292 r839 1 1 #!/bin/bash 2 2 export LANGUAGE=C 3 egrep -r $* . | egrep -v '\.svn|~:| binary|/CVS/|/tags/'3 egrep -r $* . | egrep -v '\.svn|~:|\tbinary\t|/CVS/|/tags/' -
devel/pb/bin/pbvi
r230 r839 1 1 #!/bin/bash 2 2 export LANGUAGE=C 3 gvim `egrep -r $* . | egrep -vi '\.svn|~:| binary|/CVS/' | cut -d: -f1 | sort -u`3 gvim `egrep -r $* . | egrep -vi '\.svn|~:|\tbinary\t|/CVS/' | cut -d: -f1 | sort -u`
Note:
See TracChangeset
for help on using the changeset viewer.