Skip to content

Commit 4db3fa0

Browse files
authored
Generat new pdf with password gen chapter (#20)
1 parent f8e633d commit 4db3fa0

5 files changed

+7
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### **v0.0.3** (Jan 31, 2021)
6+
7+
Added new chapter: "Bash Password Generator Script"
8+
59
### **v0.0.2** (Jan 27, 2021)
610

711
Added License Notes to PDF

content/000-about-the-author.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# About the book
22

3-
* **This version was published on Jan 27 2021**
3+
* **This version was published on Jan 31 2021**
44

55
This is an open-source introduction to Bash scripting guide that will help you learn the basics of Bash scripting and start writing awesome Bash scripts that will help you automate your daily SysOps, DevOps, and Dev tasks. No matter if you are a DevOps/SysOps engineer, developer, or just a Linux enthusiast, you can use Bash scripts to combine different Linux commands and automate tedious and repetitive daily tasks so that you can focus on more productive and fun things.
66

content/022-bash-password-generator.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ exit 0
106106
else
107107
read -p "What is this password for? " source && echo "${source} - ${pass_output}" >> ${log_file}
108108
printf "Password is saved in the pass-log. Goodbye, ${USER}!\n"
109+
fi
109110
```
110111
If we want to check the log file and see if the password was saved, all we need to do is ```cat ```the file:
111112
```
@@ -171,4 +172,4 @@ I hope you find this useful and would like to hear what do you think about loggi
171172
Let me know if you face any issues with the script or if you have any recommendations as well.
172173

173174
# Contributed by
174-
Alex Georgiev
175+
[Alex Georgiev](https://twitter.com/alexgeorgiev17)
20.5 KB
Binary file not shown.
20.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)