From ef35d9df6ecd981ebf00dcd29e7ce35a323d5dd2 Mon Sep 17 00:00:00 2001 From: brueffer Date: Mon, 13 Jul 2015 12:04:40 +0000 Subject: [PATCH] MFC: r284929 Fix issues that kept some of the examples from actually working. PR: 144534 Submitted by: Nicolas Edel Approved by: re (gjb) git-svn-id: svn://svn.freebsd.org/base/stable/10@285448 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- share/examples/csh/dot.cshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/share/examples/csh/dot.cshrc b/share/examples/csh/dot.cshrc index c85e4b119..e9f0b38e1 100644 --- a/share/examples/csh/dot.cshrc +++ b/share/examples/csh/dot.cshrc @@ -9,11 +9,11 @@ # has multiple ssh-agent(1) processes running, this will very likely # set SSH_AUTH_SOCK to point to the wrong file/domain socket. if (${?SSH_AUTH_SOCK} != "1") then - setenv SSH_AUTH_SOCK `sockstat -u | awk '/^${USER}.+ ssh-agent/ { print $6 }' + setenv SSH_AUTH_SOCK `sockstat -u | awk '/^${USER}.+ ssh-agent/ { print $6 }'` endif # Change only root's prompt -if (`id -g` == 0) +if (`id -g` == 0) then set prompt="root@%m# " endif @@ -70,7 +70,7 @@ complete grep 'c/-*A/x:<#_lines_after>/' \ 'n/-*f/f/' \ 'n/*/f/' complete ifconfig 'p@1@`ifconfig -l`@' \ - 'n/*/(range phase link netmask mtu vlandev vlan metric mediaopt down delete broadcast arp debug)/' + 'n/*/(range phase link netmask mtu vlandev vlan metric mediaopt down delete broadcast arp debug)/' \ 'c/%/j/' \ 'n/*/`ps -ax | awk '"'"'{print $1}'"'"'`/' complete kill 'c/-/S/' 'c/%/j/' 'n/*/`ps -ax | awk '"'"'{print $1}'"'"'`/' -- 2.45.0