# Compress the input file repeatedly until it reaches 1 byte
IN="$1"
while[$(wc -c "$IN"| cut -d ' ' -f 1) !="1"];do
zip "${IN}.zip""$IN"
IN="${IN}.zip"
done
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.