add make-set

This commit is contained in:
artoo 2014-10-07 01:04:26 +02:00
parent c50a86a3db
commit 5f4136e6b8
2 changed files with 7 additions and 1 deletions

View file

@ -14,7 +14,8 @@ BINPROGS = \
bin/build-set \ bin/build-set \
bin/basestrap \ bin/basestrap \
bin/manjaro-chroot \ bin/manjaro-chroot \
bin/fstabgen bin/fstabgen \
bin/make-set
SYSCONFIGFILES = \ SYSCONFIGFILES = \
conf/manjaro-tools.conf conf/manjaro-tools.conf

5
bin/make-set Normal file
View file

@ -0,0 +1,5 @@
#!/bin/bash
for n in $(ls -d $(pwd)/*);do
echo ${n##*/} | sort > $1.set
done