diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-10-21 19:32:48 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-10-21 19:32:48 +0100 |
commit | 7026bc81aa89be2c6b998f39e258366b32c18cb0 (patch) | |
tree | a79c8774830009a8c676baf688df73b37d0bfffe /modules/date | |
parent | 04c033a5e846918d80bee68c65935c319d809f9d (diff) |
Renamed functions inside modules to get_functionname
Diffstat (limited to 'modules/date')
-rw-r--r-- | modules/date | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/date b/modules/date index c6ddc38..cc5ccc2 100644 --- a/modules/date +++ b/modules/date @@ -4,9 +4,9 @@ PREFIX='' -date() +get_date() { echo "$PREFIX $(date '+%d-%m-%y (%a)')" } -date +get_date |