mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-05 15:15:39 +01:00
7 lines
72 B
Bash
7 lines
72 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
for i in "$@" ; do
|
||
|
|
tar -xvzf $i
|
||
|
|
break
|
||
|
|
done
|