# data/archivers
# Format: pattern command to extract idname from filename
# Does not support .arj files as arj for linux doesn't support
# one file extraction. If you find one that does then inform me.

"*.tgz" "tar -zxvf$filename$ $idname$" 
"*.tar.gz" "tar -zxvf$filename$ $idname$"
"*.tar" "tar -xvf$filename$ $idname$"
"*.zip" "unzip -ej $filename$ $idname$"
"*.lha" "lha xi $filename$ $idname$"
"*.lzh" "lha xi $filename$ $idname$"
