5a2a63645f
uname: overwrites the hostname in command uname with the string 'void'. date: uses the timestamp read from SOURCE_DATE_EPOCH as date.
6 lines
115 B
Bash
6 lines
115 B
Bash
#!/bin/sh
|
|
|
|
uname=$(/usr/bin/uname $@)
|
|
rv=$?
|
|
echo "$uname" | sed "s/\(^\| \)$(/usr/bin/uname -n)\($\| \)/\1void\2/"
|