~ubuntu-branches/debian/stretch/resource-agents/stretch

« back to all changes in this revision

Viewing changes to doc/ralist.sh

  • Committer: Bazaar Package Importer
  • Author(s): Andres Rodriguez
  • Date: 2011-06-10 16:26:35 UTC
  • Revision ID: james.westby@ubuntu.com-20110610162635-yiy0vfopqw4trzgx
Tags: upstream-3.9.0
ImportĀ upstreamĀ versionĀ 3.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
RADIR=$1
 
4
PREFIX=$2
 
5
SUFFIX=$3
 
6
 
 
7
for f in `find $RADIR -type f -executable`; do
 
8
    echo ${PREFIX}`basename $f`${SUFFIX}
 
9
done