- Linux Bash — Date Format
- 3 Answers 3
- Edited apr 2016!
- Original post
- Stronger method
- Команда date в Linux
- Синтаксис команды date
- Примеры использования date
- Выводы
- Date command in Bash
- How to print date in MM-DD-YYYY format:
- How to print date in MM-YYYY format:
- How to display the current day number and seconds passed:
- How to display the week number using the date command:
- How to display time using the date command:
- Conclusion:
- About the author
- Sam U
- Linux bash date format
- Learn Latest Tutorials
- Preparation
- Trending Technologies
- B.Tech / MCA
- Javatpoint Services
- Training For College Campus
Linux Bash — Date Format
Note that date format %Y-%m-%d could by written %F as forrmat %H:%M:%S could be simplier written %T . So date +%F-%T give same output as date +%Y-%m-%d-%H:%M:%S (double quotes are useless while there is no space in format string)
3 Answers 3
Edited apr 2016!
See further (stronger method)
Original post
#!/bin/bash read -p "Date (format yyyy-mm-dd): " input check=$(date +%F) if [ "$input" == "$check" ]; then echo "Right!" else echo "False!" fi
#!/bin/bash read -p "Date (format YYYY-MN-DD-HH24:MM:SS): " input check=$(date +%F-%T) if [ "$input" == "$check" ]; then echo "Right!" else echo "False!" fi
cat >hesdate.sh # Copy 1st sample and paste to terminal chmod +x hesdate.sh date +%F ; ./hesdate.sh 2013-01-04 Date (format yyyy-mm-dd): 2013-01-04 Right! cat >hesdate.sh # Copy 2nd sample and paste to terminal date -d now\ +10\ sec +%F-%T ; ./hesdate.sh 2013-01-04-10:17:06 # copy this line Date (format YYYY-MN-DD-HH24:MM:SS): 2013-01-04-10:17:06 # past exactly 10 secs after Right!
For testing a date, you could:
[[ $input =~ ^6959-33-15$ ]] if [[ $input =~ ^2012-97-26-51:46:17$ ]];then
Using boot method let you confirm format and reliability of input
Stronger method
If you want to check input, there is a finer method:
unset adate declare -A adate date=2013-12-04-10:17:06 for field in s:0-59 m:0-59 h-0-23 D-1-31 M-1-12 Y#2000-2100 ;do sep=$ min=$ field=$ max=$ min=$ crt=$> ((min <=10#$crt&&10#$crt<=max)) && adate[$field]=$crt || echo Error: $crt not between $min and $max in $field field. date=$done declare -p adate
This will dump adate array variable:
declare -A adate='([D]="04" [M]="12" [Y]="2013" [h]="10" [m]="17" [s]="06" )'
From there, you could re-validate day number:
max=$(date -d "$-$-1 +1 month -1 day" +%d) ((10#$>max)) && echo "Error Day number too high: ($>$max)."
The only thing not tested there is field length if
will work too (there is only one digit in day field).
If needed, you could change the line:
for field in s:0-59 m:0-59 h-0-23 D-1-31 M-1-12 Y#2000-2100 ;do sep=$ min=$ field=$ max=$ min=$ crt=$>
for field in s:20-59 m:20-59 h-20-23 D-21-31 M-21-12 Y#42000-2100 ;do sep=$ len=$ min=$ field=$ max=$ min=$ crt=$> [ $ -eq $len ] || echo "Error: Field $field is no $len len: $."
Nota: Year field is arbitrarily limited between 2000 and 2100, but this is easy to understand/change.
Команда date в Linux
Главное свойство утилит GNU/Linux — делать что-то одно, но эффективно. Яркий пример — команда date Linux, работающая с датой и временем. С её помощью можно извлекать любую дату в разнообразном формате, в том числе и рассчитывать прошлое и будущее время. Привилегированные пользователи могут перезаписывать системное время, используя её.
Утилита предустановлена во всех дистрибутивах GNU/Linux. В этой статье будут рассмотрены возможности date и способы применения этой команды.
Синтаксис команды date
Программа может выполнятся от имени обычного пользователя. Стандартный синтаксис команды (квадратные скобки обозначают необязательное наличие):
date [ ОПЦИИ ] . [ +ФОРМАТ ]
Ниже представлена таблица с часто применяемыми опциями для date.
Опция | Длинный вариант | Значение |
---|---|---|
-d STRING | —date=STRING | Вывод даты по указанной строке (например ‘yesterday’, ‘tomorrow’, ‘last monday’). |
-I | —iso-8601[=FMT] | Вывод даты в формате ISO 8601. FMT по умолчанию содержит ‘date’. Также может содержать ‘hourse’, ‘minutes’, ‘seconds’, ‘ns’ для отображения соответствующих значений и часовой пояс относительно UTC рядом с датой. |
—rfc-3339=FMT | Вывод даты в формате RFC 3339. FMT по умолчанию содержит ‘date’. Также может содержать ‘seconds’ и ‘ns’ для отображения секунд или наносекунд. | |
-r FILE | —reference=FILE | Вывод даты последней модификации указанного файла в формате по умолчанию. |
-u | —utc | Вывод UTC-даты |
Аргумент ФОРМАТ отвечает за форматирование вывода даты. Для его указания необходимо поставить знак «+» и написать нужную маску. Наиболее популярные форматы:
Формат | Значение |
---|---|
%% | Знак процента |
%a | День недели текущей локали в короткой форме («Чтв») |
%A | День недели текущей локали в длинной форме («Четверг») |
%b | Месяц года текущей локали в короткой форме в родительном падеже («янв») |
%B | Месяц года текущей локали в длинной форме в родительном падеже («января») |
%c | Дата и время текущей локали без указания часового пояса |
%С | Первые две цифры текущего года |
%d | Числовой день месяца с ведущим нулём |
%D | Дата в формате %m/%d/%y |
%e | День месяца; аналог %_d |
%F | Дата в формате %Y-%m-%d |
%h | Аналог %b |
%H | Часы (00..23) |
%I | Часы (01..12) |
%j | День года (001..366) |
%m | Месяц (01..12) |
%M | Минуты (00..59) |
%n | Новая строка |
%q | Квартал года |
%S | Секунды (00..59) |
%t | Знак табуляции |
%T | Время в формате %H:%M:%S |
%u | Числовой день недели; 1 — понедельник |
%x | Дата в локальном формате |
%X | Время в локальном формате |
%Z | Аббревиатура временной зоны |
Примеры использования date
Введем команду без параметров.
Будет отображена текущая дата и время в соответствии с настройками локали системы.
Команда date без параметров по умолчанию применяет маску %a %b %d %X %Z. Поскольку все форматы должны быть переданы как один параметр (из-за принципа обработки данных командным интерпретатором Bash), пробелы между ними необходимо экранировать обратным слэшем (\) или взять в кавычки.
Особое внимание следует уделить параметру -d (—date). Его функциональность не слишком очевидна, но при этом наиболее обширна.
Пример 1. Вычисление даты по числу секунд, прошедших с 1 января 1970 года.
Пример 2. Вычисление даты и времени следующего понедельника при указании часового пояса Нью-Йорка в 03:00.
date —date=’TZ=»America/New_York» 03:00 next mon’
Обратите внимание: указывать название дня недели или месяца можно в любом регистре, в короткой или длинной форме. Параметры next и last обозначают следующий и прошедший, соответственно, ближайшие дни недели.
Пример 3. Если текущий день месяца — последний, сформировать отчет о занятости дискового пространства корневого и домашнего каталога в файл report.
#!/bin/bash
if [[ $(date —date=’next day’ +%d) = ’01’ ]]; then
df -h / /home > report
Такой скрипт можно использовать для автоматизации работы с помощью демона crontab или anacron.
Выводы
Команда date Linux является эффективным инструментом работы с датой и временем, с широкой возможностью их расчёта для прошедших или будущих показателей. Также она применяется в написании сценариев в командном интерпретаторе Bash.
Обнаружили ошибку в тексте? Сообщите мне об этом. Выделите текст с ошибкой и нажмите Ctrl+Enter.
Date command in Bash
Performing date operation in shell scripting is very common especially performing scheduling tasks. But dealing with “date” in bash scripting is a tangling job. Bash comes with the “date” command that displays the date in various formats.
This post is dedicated to discussing the “date” command, its syntax, and usage in bash. Let’s understand the syntax of the “date” command first:
Let’s have a look at a list of format options for the “date” command:
Format | Description |
date +%a | Gives name of the weekday [Mon, Sun, Fri] |
date +%A | Gives name of the weekday [Monday, Sunday, Friday] |
date +%b | Gives name of the month [Jan, Feb, Mar] |
date +%B | Gives name of the month [January, February, March] |
date +%d | Displays day of the month [05] |
date +%D | Displays current date MM/DD/YY format [11-01-21] |
date +%F | Shows date in YYYY-MM-DD format [2021-11-01] |
date +%H | Shows hour in 24-hour format [22] |
date +%I | Shows hour in 12-hour format [11] |
date +%j | Displays the day of the year [001 – 366] |
date +%m | Displays the number of the month 5 |
date +%M | Displays minutes 44 |
date +%S | Displays seconds 48 |
date +%N | Displays in Nanoseconds |
date +%T | Displays time as HH:MM:SS [in 24-hour format] |
date +%u | Day of the week 5 1 is Monday, 6 is Saturday |
date +%U | Shows week number of the year 35 |
date +%Y | Displays year YYYY [2021] |
date +%Z | Displays Time zone |
Any of the option mentioned above can be used with the date command; let’s further explore the date command:
How to print date in MM-DD-YYYY format:
I am writing simple bash scripts to display the date in various formats. To writing the script, I am using the “vim” editor. To getting a versatile editor, use the command mentioned below:
Type “vim” in terminal to launch vim editor:
I have saved the file by the name of “datefile.sh”, to execute it use the command:
Keep in mind the case sensitivity of letters, “M” is for minutes, and “m” is the month.
How to print date in MM-YYYY format:
Let’s change the format of the date:
Now the day is displaying before the month.
How to display the current day number and seconds passed:
Calculating the number of days and even the number of seconds seem impractical, but thanks to the “date” command, it can easily be printed in terminal:
echo “The Current Day Number: “ $numberOfdays
numberOfseconds = ` date + % s `
echo “Total seconds passed this year: “ $numberOfseconds
How to display the week number using the date command:
Another exciting feature of the “date” command is that it can quickly tell you the year’s week number. To get the week number, type the following command:
Or if you are working with bash scripting, then try the following program using any editor:
echo “The week number of the year is:” $weekNumber
How to display time using the date command:
Let’s write a program to display time using the date command:
Conclusion:
The “date” command is a built-in command of Unix-like operating systems that, apart from displaying date can be used with other commands as well. In this guide, we understood the syntax and usage of the “date” command in bash scripting to display it in various formats.
About the author
Sam U
I am a professional graphics designer with over 6 years of experience. Currently doing research in virtual reality, augmented reality and mixed reality.
I hardly watch movies but love to read tech related books and articles.
Linux bash date format
Learn Latest Tutorials
Preparation
Trending Technologies
B.Tech / MCA
Javatpoint Services
JavaTpoint offers too many high quality services. Mail us on h[email protected], to get more information about given services.
- Website Designing
- Website Development
- Java Development
- PHP Development
- WordPress
- Graphic Designing
- Logo
- Digital Marketing
- On Page and Off Page SEO
- PPC
- Content Development
- Corporate Training
- Classroom and Online Training
- Data Entry
Training For College Campus
JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Please mail your requirement at [email protected].
Duration: 1 week to 2 week
Like/Subscribe us for latest updates or newsletter