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
#!/bin/bash for student in $(canvaslms users -sc tilkry24 | cut -f 2); do grades=$(canvaslms submissions -c tilkry2[012] -u $student | cut -f 2,4 | sort -u) IFS=$'\n' if [ -z "$grades" ]; then continue fi for grade in $grades; do assgn=$(echo "$grade" | cut -f 1 -d $'\t') grade=$(echo "$grade" | cut -f 2 -d $'\t') if [ -z "$grade" ]; then continue fi echo $student $assgn $grade #canvaslms grade -c tilkry24 -a "$assgn" -g "$grade" -u $student -m #"Result from previous year." done done
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: