“script de shell horário atual” Respostas de código

script de shell horário atual

#!/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

script de shell horário atual

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

Respostas semelhantes a “script de shell horário atual”

Perguntas semelhantes a “script de shell horário atual”

Mais respostas relacionadas para “script de shell horário atual” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código