summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAndreas Fankhauser (@tux-six)2022-07-06 22:23:22 +0200
committerAndreas Fankhauser (@tux-six)2022-07-06 22:23:22 +0200
commitb627374773e3256fbd08fb204fcced3233b9c97e (patch)
tree0ce631914071a559441698d3d7a84e104d7b4395 /README.md
parent0d745cdb688eab40094c434d2564515705ce686b (diff)
downloadbulk-ln-b627374773e3256fbd08fb204fcced3233b9c97e.zip
bulk-ln-b627374773e3256fbd08fb204fcced3233b9c97e.tar.gz
Add contrib Dockerfile about how to build from tarball
- rename README.txt -> README.md - Add contrib Dockerfile as sample how to build from tarball - Fix bashism 'set -o posix'
Diffstat (limited to 'README.md')
-rw-r--r--README.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..5b7bc29
--- /dev/null
+++ b/README.md
@@ -0,0 +1,29 @@
+
+BulkLn
+================
+
+`ln` alternative in case you think `ln` in a shell loop takes too much time to
+create many links.
+
+
+## How to build / install
+
+Minimal way is to do:
+
+```sh
+ curl -sSL http://git.hiddenalpha.ch/bulk-ln.git/snapshot/bulk-ln-master.tar.gz | tar xz
+ cd bulk-ln-master
+ ./configure
+ make
+ make install
+```
+
+As usual, configure provides some help:
+
+```sh
+ ./configure --help
+```
+
+Its worth browsing the "contrib/" directory. It contains potentially useful
+scripts for building.
+