Ana Sayfa / Linux / Bash Script / Avoiding date using printf

Avoiding date using printf

In Bash 4.2, a shell built-in time conversion for printf was introduced: the format specification %(datefmt)T makes printf output the date-time string corresponding to the format string datefmt as understood by strftime.

Get the current date

$ printf '%(%F)T\n'
2016-08-17

Set variable to current time

$ printf -v now '%(%T)T'
$ echo "$now"
12:42:47

Bunada Göz Atın

PHP Types

Type Comparison There are two types of comparison: loose comparison with == and strict comparison …

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir