~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/gen-sig

  • Committer: Robert Collins
  • Date: 2005-09-14 11:27:20 UTC
  • mto: (147.2.6) (364.1.3 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: robertc@robertcollins.net-20050914112720-c66a21de86eafa6e
trim fai cribbage

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
## Copyright (C) 2004 Aaron Bentley
3
 
##
4
 
## See the file "COPYING" for further information about
5
 
## the copyright and warranty status of this work.
6
 
 
7
 
. "$abadir/aba-lib"
8
 
 
9
 
# executes the command ($* are the arguments after the command name)
10
 
cmd_exec()
11
 
{
12
 
   if [ -z "$1" ]; then
13
 
      echo Please provide a file name
14
 
      exit 1
15
 
   fi
16
 
   echo -n "$(tla id $1|cut -f 2)       "
17
 
   stat --format="dev=%d:ino=%i:mtime=%Y:size=%s" $1
18
 
}
19
 
 
20
 
# one-liner description for aba help
21
 
cmd_desc()
22
 
{
23
 
  aba_desc gen-sig "generates an inode-sig for a file"
24
 
}
25
 
 
26
 
# short help for aba command -h, --help
27
 
cmd_help()
28
 
{
29
 
   cat <<EOT
30
 
usage: aba gen-sig filename
31
 
 
32
 
Generates the inode signature for a given file.
33
 
 
34
 
EOT
35
 
}
36
 
 
37
 
# extended help for aba command -H or aba help command
38
 
cmd_ext_help()
39
 
{
40
 
echo -n
41
 
}       
42
 
 
43
 
aba_run "$@"
44
 
# arch-tag: gen-sig by Aaron Bentley  (15:06 Feb 11 2004)