I simply like to get the next week number of the year using Bash. I have a working script as follows but I am not pretty sure if it is the right way to do so. I have a concern specially around what it produces if the week is 52? Would output be 53 or 1?
echo $(($(date +%-V)+1))