зеркало из https://github.com/mozilla/pjs.git
12 строки
248 B
Bash
12 строки
248 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
#-------------------------------------------------------
|
||
|
# Hack to allow symlinking (required for Sun's JRE) in
|
||
|
# a zippy.
|
||
|
#
|
||
|
# usage: symlink.sh <srcfile> <newlink>
|
||
|
#
|
||
|
#-------------------------------------------------------
|
||
|
|
||
|
ln -s $1 $2
|