From bc9688e0a6f424f903565bd75e94cbaa774c5675 Mon Sep 17 00:00:00 2001 From: "dylan.araps@gmail.com" Date: Mon, 27 Jan 2020 09:34:36 +0000 Subject: kiss: use heredoc FossilOrigin-Name: ff4dae791fbafc7fdb82e74413360e0b3deaa57cf8e42874151e0ab896939dd8 --- kiss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'kiss') diff --git a/kiss b/kiss index 07c4dca..bd95417 100755 --- a/kiss +++ b/kiss @@ -71,7 +71,9 @@ dosu() { # command allows you to input a password via stdin. To hide # the prompt, the command's output is sent to '/dev/tty' # and the output of 'su' is sent to '/dev/null'. - echo "$pass" | su "${drop_to:-root}" -c "$* >/dev/tty" >/dev/null + su "${drop_to:-root}" -c "$* >/dev/tty" <<-EOF >/dev/null + $pass + EOF } pkg_lint() { -- cgit v1.2.3