“Hora actual del script de shell” Código de respuesta

Hora actual del script de shell

#!/bin/bash
now="$(date)"
printf "Current date and time %s\n" "$now"
 
now="$(date +'%d/%m/%Y')"
printf "Current date in dd/mm/yyyy format %s\n" "$now"
 
echo "Starting backup at $now, please wait..."
# command to backup scripts goes here
# ...
Tender Tarantula

Hora actual del script de shell

date +'FORMAT'
 
### mm/dd/yyyy ###
date +'%m/%d/%Y'
 
## Time in 12 hr format ###
date +'%r'
 
## backup dir format ##
backup_dir=$(date +'%m/%d/%Y')
echo "Backup dir for today: /nas04/backups/${backup_dir}"
Excited Elk

Respuestas similares a “Hora actual del script de shell”

Preguntas similares a “Hora actual del script de shell”

Más respuestas relacionadas con “Hora actual del script de shell” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código