Template
1
0

Example loop added

This commit is contained in:
like-all 2016-11-21 16:34:36 +03:00
parent 50b134d3b9
commit 01e371172a
2 changed files with 12 additions and 2 deletions

10
debian/changelog vendored
View File

@ -1,8 +1,14 @@
dumbfuck (0.7-8) UNRELEASED; urgency=medium
dumbfuck (0.7-9) UNRELEASED; urgency=medium
* Example loop added
-- Azer Abdullaev (Like All) <like-all@yandex.com> Mon, 21 Nov 2016 16:33:35 +0300
dumbfuck (0.7-8) unstable; urgency=medium
* Add /usr/bin/asshole - a copy of dumbfuck executable
-- Azer Abdullaev (Like All) <like-all@yandex.com> Thu, 04 Aug 2016 14:13:30 +0300
-- Azer Abdullaev (Like All) <like-all@yandex.com> Mon, 21 Nov 2016 16:33:26 +0300
dumbfuck (0.7-7) unstable; urgency=medium

View File

@ -1,3 +1,7 @@
#!/usr/bin/env bash
echo "I am dumbfuck."
for i in a b c; do
echo "dumbfuck $i";
done