You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 10, 2021. It is now read-only.
for file in `find notes/ci_cd/ -name "*.md" | sort -r`
do
cat $file >> README.tmp
done
echo "## Bash" >> README.tmp
for file in `find notes/bash/ -name "*.md" | sort -r`
do
cat $file >> README.tmp
done
echo "## Ansible" >> README.tmp
for file in `find notes/ansible/ -name "*.md" | sort -r`
do
cat $file >> README.tmp
done
echo "## Vagrant" >> README.tmp
for file in `find notes/vagrant/ -name "*.md" | sort -r`
do
cat $file >> README.tmp
done
echo "## Git" >> README.tmp
for file in `find notes/git/ -name "*.md" | sort -r`
do
cat $file >> README.tmp
done
# License
echo "# License" >> README.tmp
echo "" >> README.tmp
echo "This are just a few notes without any warranty. Please check the license [here](https://github.com/neikei/notes/blob/master/LICENSE)." >> README.tmp