blob: c7c4118718fd273a1809bc7b60505c1461b74739 (
plain)
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
|
rem Inspect snapshot
rem Copyright 2008 Beman Dawes
rem Distributed under the Boost Software License, Version 1.0.
rem See http://www.boost.org/LICENSE_1_0.txt
pushd posix\tools\inspect\build
bjam
popd
echo inspect...
pushd posix
dist\bin\inspect >..\inspect.html
popd
echo Create ftp script...
copy user.txt inspect.ftp
echo dir >>inspect.ftp
echo binary >>inspect.ftp
echo put inspect.html >>inspect.ftp
echo dir >>inspect.ftp
echo mdelete inspect-snapshot.html >>inspect.ftp
echo rename inspect.html inspect-snapshot.html >>inspect.ftp
echo dir >>inspect.ftp
echo bye >>inspect.ftp
echo Run ftp script...
ftp -n -i -s:inspect.ftp boost.cowic.de
echo Inspect script complete
|