-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetSymLinks.sh
executable file
·58 lines (56 loc) · 1.28 KB
/
setSymLinks.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#! /bin/sh
#
# Script to create symbolic links for JMRI website
#
# See http://jmri.org/help/en/html/doc/Technical/WebSite.shtml#link
#
# First argument is path to a JMRI/JMRI repository to be used.
# Second argument is path to a JMRI/website repository to be used
#
# typical use:
# ./setSymLinks.sh ~me/git/JMRI ~me/git/website
ln -sf $2/COPYING .
ln -sf $2/copyright.shtml .
ln -sf $2/Footer .
ln -sf $2/Footer.shtml .
ln -sf $2/Header .
ln -sf $2/Header.shtml .
ln -sf $2/Help.html .
ln -sf $2/SiteCredit.shtml .
ln -sf $2/Sidebar .
ln -sf $2/Sidebar.shtml .
ln -sf $2/SidebarApps.shtml .
ln -sf $2/Style .
ln -sf $2/Style.shtml .
ln -sf $2/community .
ln -sf $2/contact .
ln -sf $2/css .
ln -sf $2/donations.shtml .
ln -sf $2/download .
ln -sf $2/exclude-list .
ln -sf $2/favicon.ico .
ln -sf $2/hardware .
ln -sf $2/images .
ln -sf $2/include-list .
ln -sf $2/index.shtml .
ln -sf $2/info.txt .
ln -sf $2/install .
ln -sf $2/java .
ln -sf $2/js .
ln -sf $2/manual .
ln -sf $2/nbproject .
ln -sf $2/pdf .
ln -sf $2/problem-report.php .
ln -sf $2/releaselist .
ln -sf $2/releasenotes .
ln -sf $2/robots.txt .
ln -sf $2/sitemap .
ln -sf $2/swf .
ln -sf $2/templates .
ln -sf $2/tools .
ln -sf $2/update.pl .
ln -sf $1/web/ .
ln -sf $1/resources .
ln -sf $1/jython .
ln -sf $1/help .
ln -sf $1/xml .