Horje
today's date shell script Code Example
today's date shell script
#!/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
# ...




Shell

Related
mongodb shell query last document Code Example mongodb shell query last document Code Example
install github desktop ubuntu Code Example install github desktop ubuntu Code Example
update npm-windows Code Example update npm-windows Code Example
https host ngrok Code Example https host ngrok Code Example
install postgresql 12.4 home brew Code Example install postgresql 12.4 home brew Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
15