mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
10 lines
121 B
Bash
Executable file
10 lines
121 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
echo "aap"
|
|
echo "noot"
|
|
echo "mies"
|
|
else
|
|
echo $1 > output.txt
|
|
fi
|