This website requires JavaScript.
Explore
Help
Sign in
mirrors
/
zsh
Watch
1
Star
0
Fork
You've already forked zsh
0
mirror of
git://git.code.sf.net/p/zsh/code
synced
2025-01-17 22:31:12 +01:00
Code
Releases
Activity
71745c6f9b
zsh
/
Functions
/
Misc
/
harden
7 lines
96 B
Text
Raw
Normal View
History
Unescape
Escape
unposted: force file to be non-executable
2007-07-25 22:11:21 +02:00
#!/bin/sh
after-move cleanup
2001-04-02 15:04:04 +02:00
# harden a link (convert it to a singly linked file)
cp $1 $1.foo
rm $1
mv $1.foo $1
Copy permalink