Unzip to a folder with the same name as the file (without the .zip extension)
for f in *.zip; do unzip "$f" -d "${f%.zip}"; done
For just one file (i.e. to use in a function) it would be:
unzip "$1" -d "${1%.zip}"
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.