mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
11 lines
114 B
Bash
11 lines
114 B
Bash
|
#! /bin/sh -ex
|
||
|
echo $*
|
||
|
|
||
|
case $* in
|
||
|
*)
|
||
|
mkdir $1
|
||
|
echo $3 $4 > $1/hello
|
||
|
;;
|
||
|
esac
|
||
|
|