5 lines
48 B
Bash
5 lines
48 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
unzip -n "$1" -d ~/music
|
||
|
rm -rf "$1"
|