From 618ffa45dc88e44d14cf59466662d06017f4d896 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 10 Oct 2016 08:21:20 +0300 Subject: rename the project --- README.md | 6 +++--- update.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7f1874f..b8df99a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -Configuration file management -============================= +Configuration file sharing +========================== A simple tool to help share (configuration) files across multiple machines. Actual files are stored in directories with names roughly matching the `%.+%` @@ -11,7 +11,7 @@ Directory hierarchies are preserved. A database of symlinks is maintained in case a shared file is deleted (the corresponding symlink is then deleted too). -The default database file name is "db.bin", maintained at the top-level +The default database file name is "links.bin", maintained in the top-level directory with shared files. This description is obviously confusing; see the complete usage example below. diff --git a/update.sh b/update.sh index 9c681a2..b21cc27 100644 --- a/update.sh +++ b/update.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Copyright (c) 2016 Egor Tensin -# This file is part of the "Configuration file management" project. +# This file is part of the "Configuration file sharing" project. # For details, see https://github.com/egor-tensin/config-links. # Distributed under the MIT License. @@ -175,7 +175,7 @@ update_shared_dir() { # Database maintenance -readonly default_db_fn='db.bin' +readonly default_db_fn='links.bin' db_path="$shared_dir/$default_db_fn" declare -A database -- cgit v1.2.3