Browse Source

bash: date: fix

Maxim Lihachev 11 years ago
parent
commit
1029b55f3b
  1. 6
      etc/shell/bash/aliases

6
etc/shell/bash/aliases

@ -116,7 +116,11 @@ command_not_found_handle() { #noindex @@ -116,7 +116,11 @@ command_not_found_handle() { #noindex
#- Дата
function date() { #noindex
command date ${@:-'+%A, %d %B %Y, %H:%M'}
if [ -z "$1" ]; then
command date '+%A, %d %B %Y, %H:%M'
else
command date "$@"
fi
}
#- Список функций и псевдонимов

Loading…
Cancel
Save