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

« back to all changes in this revision

Viewing changes to bin/_cygwin_symlink.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 11:03:05  2002
 
6
##
 
7
## wrapper for "ln -s" that also copies the acl (non-default on cygwin)
 
8
##
 
9
 
 
10
 
 
11
c="ln -s $1 $2"
 
12
echo $c
 
13
$c
 
14
getfacl $1 | setfacl -f - $2
 
15