mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
11 lines
159 B
Bash
11 lines
159 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
SVN=/usr/bin/svn
|
||
|
REPO=https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem
|
||
|
REV=2400 # since start of 2013
|
||
|
|
||
|
$SVN log -v -r HEAD:$REV $REPO
|
||
|
|
||
|
|
||
|
|