prayer against depression – by saint ignatius of loyola

O Christ Jesus, when all is darkness and we feel our weakness and helplessness, give us the sense of Your presence, Your love, and Your strength. Help us to have perfect trust in Your protecting love and strengthening power, so that nothing may frighten or worry us, for, living close to You, we shall see …

Colossians 3:23-24

23 Whatever you do, do from the heart, as for the Lord and not for others, 24 knowing that you will receive from the Lord the due payment of the inheritance; be slaves of the Lord Christ.

HEBREW 5:8-9

8 Son though he was, he learned obedience from what he suffered; 9 and when he was made perfect, he became the source of eternal salvation for all who obey him,

Fundamental related of a bash builtin command named “if”

ABOUT if Conditionals have many forms. The most basic form is: if expression then statement where ‘statement’ is only executed if ‘expression’ evaluates to true. ’21’ evaluates to true.xs TYPICAL SHELL EXPOSURE [bash] $if true; then echo "works" ; fi works $if false; then echo "works" ; fi $ [/bash] LINK https://stackoverflow.com/questions/16034749/if-elif-else-statement-issues-in-bash http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-6.html

Fundamental of a bash builtin command named “unalias”

ABOUT unalias Remove each name from the list of defined aliases. If -a is supplied, all alias definitions are removed. The return value is true unless a supplied name is not a defined alias. [bash] $unalias unalias: usage: unalias [-a] name [name …] $echo $? 2 $unalias -a $echo $? 0 $unalias pwd bash: unalias: …

Simple example of a bash builtin command named “wait”

ABOUT wait wait waits for the process identified by process ID pid (or the job specified by job ID jobid), and reports its termination status. If an ID is not given, wait waits for all currently active child processes, and the return status is zero. If the ID is a job specification, wait waits for …