forked from lix-project/lix
11 lines
99 B
Bash
11 lines
99 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
IFS=
|
||
|
|
||
|
echo "printing list of args"
|
||
|
|
||
|
for i in $@; do
|
||
|
echo "arg: $i"
|
||
|
done
|
||
|
|
||
|
touch $out
|