~ubuntu-branches/ubuntu/intrepid/tcm/intrepid

« back to all changes in this revision

Viewing changes to bin/_cygwin_chmodplusx.sh

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2003-07-03 20:08:21 UTC
  • Revision ID: james.westby@ubuntu.com-20030703200821-se4xtqx25e5miczi
Tags: upstream-2.20
ImportĀ upstreamĀ versionĀ 2.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
##
 
3
## Daniel Boesswetter <boesswetter@peppermind.de>
 
4
##
 
5
## Fri Oct 25 13:11:40  2002
 
6
##
 
7
 
 
8
if [ -e "$1.exe" ]; then
 
9
        n=$1.exe
 
10
else
 
11
        n=$1
 
12
fi
 
13
 
 
14
setfacl.exe -m user::rwx $n
 
15