dotfiles/.config/scripts/unzip-all.sh
2026-04-25 16:39:11 +05:30

3 lines
49 B
Bash
Executable file

#!/bin/bash
for i in *.zip; do unzip "$i"; done