12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| # Each command is of the form $1 $2_*_$3 &
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.1 1996/10/21 12:31:40 peterg
# Initial revision
#
###############################################################
(ls $2*_$3 \
| sed "s/\(.*_*\)$3/$1 \1$3 \&/")
|
>
>
>
>
>
>
|
| 12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| # Each command is of the form $1 $2_*_$3 &
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2.4.1 2001/06/28 22:58:27 geraint
## Using mtt_xargs.sh to prevent Arg list too long error.
##
## Revision 1.2 1996/11/09 21:16:06 peterg
## *** empty log message ***
##
# Revision 1.1 1996/10/21 12:31:40 peterg
# Initial revision
#
###############################################################
(mtt_xargs.sh "ls" "$2*_$3" \
| sed "s/\(.*_*\)$3/$1 \1$3 \&/")
|