systemd files from apk7-ubuntu

This commit is contained in:
2018-10-25 03:37:13 -03:00
parent af9bf9ff8d
commit ee987e663f
23 changed files with 2870 additions and 1 deletions

7
install-bin.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
[ -d ${HOME}/bin ]
mkdir ${HOME}/bin
for f in $(ls bin/* --color=no) ; do ln -s $f ${HOME}/${f%.sh}; done
exit 0