6 lines
76 B
Bash
6 lines
76 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
mkdir $out || exit 1
|
||
|
cd $out || exit 1
|
||
|
echo "Hello World" > bla
|