mirror of
https://github.com/NixOS/nix.git
synced 2025-02-16 17:02:28 +00:00
11 lines
114 B
Bash
Executable File
11 lines
114 B
Bash
Executable File
#! /bin/sh -ex
|
|
echo $*
|
|
|
|
case $* in
|
|
*)
|
|
mkdir $1
|
|
echo $3 $4 > $1/hello
|
|
;;
|
|
esac
|
|
|