We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current version fails to run on FreeBSD and other BSD derivatives due to the line
quarter=$(date -d "$(echo "$rawdateinfo" | cut -d_ -f1)" "+%YQ%q")
as the -d flag is not supported in BSD.
-d
A portable variant could be the following, using awk:
awk
quarter=$(date +"%Y %m" | awk '{q=int($2/4)+1; printf("%sq%s\n", $1, q);}')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current version fails to run on FreeBSD and other BSD derivatives due to the line
as the
-d
flag is not supported in BSD.A portable variant could be the following, using
awk
:The text was updated successfully, but these errors were encountered: