Ubuntu 24.04.1 LTS | Lataa ja asenna | Tutustu yhteisöön | Blogi | Yritysten tarjoamat palvelutValmistajien tukemat Ubuntu-tietokoneet: kannettavatietokone.fi uudet ja käytetyt sekä Lenovo-verkkokauppa
$ datepe 16.10.2009 21.46.59 +0300$ date| awk '{ print $1 }'pe$ date| awk '{ print $2 }'16.10.2009$ date| awk '{ print $3 }'21.49.32
janne@aplari:~$ date +%ape
#!/bin/shset $(date -R)echo "$1"; echo "$2"; echo "$3"
#!/bin/bashd=($(date -R))echo "${d[0]}"; echo "${d[1]}"; echo "${d[2]}"