Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

bash - How do i get last sunday date from a given date in unix

get last sunday date as output from a given date (not current date) as input

Example input: 08-30-2017 (%m-%d-%Y)

output should be last sunday: 08-27-2017

===

All of the below commands use current day as reference .But i want to give the reference date as input to get last sunday. Please help me with the command.

date +%m-%d-%Y -d "2017-09-10 -7 days"

date +%m-%d-%Y -d "last Sun"

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you deal with a fixed date format %m-%d-%Y, it should be transformed to %Y-%m-%d format to be processed by date function:

d='08-30-2017'
d=${d##*-}-${d%-*}
lst_sunday=$(date -d "$d -$(date -d $d +%u) days" +"%m-%d-%Y")

echo $lst_sunday
08-27-2017

+%u - interpreted format specificator, day of week (1..7); 1 is Monday


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.6k users

...