mirror of
https://github.com/openbsd/src.git
synced 2026-04-23 21:54:32 +00:00
Some platforms don't have "hostname -s", so use cut to trim short hostname
instead.
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
# $OpenBSD: percent.sh,v 1.4 2020/04/03 07:53:10 dtucker Exp $
|
||||
# $OpenBSD: percent.sh,v 1.5 2020/04/04 22:14:26 dtucker Exp $
|
||||
# Placed in the Public Domain.
|
||||
|
||||
tid="percent expansions"
|
||||
|
||||
USER=`id -u -n`
|
||||
USERID=`id -u`
|
||||
HOST=`hostname -s`
|
||||
HOST=`hostname | cut -f1 -d.`
|
||||
HOSTNAME=`hostname`
|
||||
|
||||
# Localcommand is evaluated after connection because %T is not available
|
||||
|
||||
Reference in New Issue
Block a user