Untuk GUI saya akan mengatakan cara termudah adalah skrip nautilus. Baris utamanya adalah:
unzip "$item" && trash "$item"
Ia bekerja di bash / dash semudah. Dalam nautilus semuanya akan terlihat seperti ini:
#!/bin/bash
# Nautilus script to unzip and then remove a zip archive.
# Nautilus script usually go in "$HOME/.gnome2/nautilus-scripts"
IFS='
'
for item in $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS; do
if [ -n "$(file -b "$item" | grep -o 'Zip')" ]; then
unzip "$item" && trash "$item"
# use trash instead of rm to move them to trash
# (trash-cli package installed)
fi
done