Hi, On 2019-05-24 15:31, 水上 夏妃 wrote:
<usvn> subversion 1.7 mod_dav_svn 1.7 sqlite 3.7 USVN 1.0.7 User Friendly SVN (USVN) Application There is a user list (Please check 【IFIS添付】.png) in "User Management". Is it possible to output the list to console output (Tera Term) or text?
Though I've not used USVN.... It seems the information in "User Management" page comes from usvn_users table. So perhaps you can get the list by using sqlite3 command line client like: $ sqlite3 -csv <database file> 'select users_login, users_lastname, \ users_firstname, users_email, user_is_admin from users;' where <database file> is the file path to the database file you specified on configure the service. Please see https://github.com/usvn/usvn/blob/1.0.7/library/SQL/sqlite.sql#L45 for table schema, and manual of sqlite3 utility for output format and other options. -- Yasuhito FUTATSUKI