7 lines
79 B
Bash
Executable file
7 lines
79 B
Bash
Executable file
#!/bin/sh
|
|
|
|
p="$(menu-pass)"
|
|
|
|
if [ -n "$p" ]; then
|
|
printf '%s' "$p" | clip
|
|
fi
|