6 lines
66 B
Plaintext
6 lines
66 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
for archive in "$@"; do
|
||
|
extract.py "${archive}"
|
||
|
done
|