mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
10 lines
185 B
Bash
10 lines
185 B
Bash
|
#!/bin/sh
|
||
|
CWD=`pwd`
|
||
|
|
||
|
# Add the latest copy of the Subversion book:
|
||
|
( cd $CWD
|
||
|
lftpget http://svnbook.red-bean.com/nightly/en/svn-book-html.tar.bz2
|
||
|
chmod 644 svn-book-html.tar.bz2
|
||
|
)
|
||
|
|