diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2007-07-25 20:15:15 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2007-07-25 20:15:15 +0000 |
commit | 1f27eed7b15a0843056bec1281fa296642056177 (patch) | |
tree | 318c97361c1671337b8bdd2b7ed738b046c272ba | |
parent | 71745c6f9b478623aeac803fb5d03bbced058576 (diff) | |
download | zsh-1f27eed7b15a0843056bec1281fa296642056177.tar.gz zsh-1f27eed7b15a0843056bec1281fa296642056177.tar.xz zsh-1f27eed7b15a0843056bec1281fa296642056177.zip |
attempt to remove executable permission, part 2
-rw-r--r-- | Functions/Misc/harden | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Functions/Misc/harden b/Functions/Misc/harden deleted file mode 100644 index 0058382b3..000000000 --- a/Functions/Misc/harden +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -# harden a link (convert it to a singly linked file) -cp $1 $1.foo -rm $1 -mv $1.foo $1 - |