Browse Source

bash: date: fix

master
Maxim Likhachev 11 years ago
parent
commit
f5e81c74b4
  1. 6
      etc/shell/bash/aliases

6
etc/shell/bash/aliases

@ -116,7 +116,11 @@ command_not_found_handle() { #noindex
#- Дата #- Дата
function date() { #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