diff --git a/docs/en/025_Using_The_Arsse/010_Managing_Users.md b/docs/en/025_Using_The_Arsse/010_Managing_Users.md
index e69de29b..99aeeac9 100644
--- a/docs/en/025_Using_The_Arsse/010_Managing_Users.md
+++ b/docs/en/025_Using_The_Arsse/010_Managing_Users.md
@@ -0,0 +1,55 @@
+[TOC]
+
+# Preface
+
+This section describes in brief some CLI commands. Please read [the general notes on the command line interface](index) before continuing.
+
+# Adding Users
+
+When first installed, The Arsse has no users configured. You may add users by executing the following command:
+
+```sh
+sudo -u www-data php arsse.php user add "user@example.com" "example password"
+```
+
+The password argument is optional: if no password is provided, a random one is generated and printed out:
+
+```console
+$ sudo -u www-data php arsse.php user add "jane.doe"
+Ji0ivMYqi6gKxQK1MHuE
+```
+
+# Setting and Changing Passwords
+
+Setting's a user's password is practically identical to adding a password:
+
+```sh
+sudo -u www-data php arsse.php user set-pass "user@example.com" "new password"
+```
+
+As when adding a user, the password argument is optional: if no password is provided, a random one is generated and printed out:
+
+```console
+$ sudo -u www-data php arsse.php user set-pass "jane.doe"
+Ummn173XjbJT4J3Gnx0a
+```
+
+## Setting and Changing Passwords for Fever
+
+Before a user can make use of [the Fever protocol](/en/Supported_Protocols/Fever), a Fever-specific password for that user must be set. It is _highly recommended_ that this not be the samer as the user's main password. The password can be set by adding the `--fever` option to the normal password-changing command:
+
+```sh
+sudo -u www-data php arsse.php user set-pass --fever "user@example.com" "fever password"
+```
+
+As when setting a main password, the password argument is optional: if no password is provided, a random one is generated and printed out:
+
+```console
+$ sudo -u www-data php arsse.php user set-pass --fever "jane.doe"
+YfZJHq4fNTRUKDYhzQdR
+```
+
+
+
+
+
diff --git a/docs/en/025_Using_The_Arsse/020_Importing_and_Exporting.md b/docs/en/025_Using_The_Arsse/020_Importing_and_Exporting.md
new file mode 100644
index 00000000..4184e2a9
--- /dev/null
+++ b/docs/en/025_Using_The_Arsse/020_Importing_and_Exporting.md
@@ -0,0 +1,54 @@
+[TOC]
+
+# Preface
+
+This section describes in brief some CLI commands. Please read [the general notes on the command line interface](index) before continuing.
+
+# Importing Newsfeeds from OPML
+
+It's possible to import not only newsfeeds but also folders and Fever groups using OPML files. The process is simple:
+
+```sh
+sudo -u www-data php arsse.php import "user@example.com" "subscriptions.opml"
+```
+
+The importer is forgiving, but some OPML files may fail, with the reason printed out. Files are either imported in total, or not at all.
+
+# Exporting Newsfeeds to OPML
+
+It's possible to export not only newsfeeds but also folders and Fever groups to OPML files. The process is simple:
+
+```sh
+sudo -u www-data php arsse.php export "user@example.com" "subscriptions.opml"
+```
+
+The output might look like this:
+
+```xml
+