Throw out getpack, replace printenv with a link to env
This commit is contained in:
parent
35b471ad94
commit
7c9fe576a8
5 changed files with 10 additions and 53 deletions
|
@ -26,7 +26,6 @@ usr: \
|
|||
/usr/bin/expr \
|
||||
/usr/bin/false \
|
||||
/usr/bin/getopts \
|
||||
/usr/bin/getpack \
|
||||
/usr/bin/read \
|
||||
/usr/bin/test \
|
||||
/usr/bin/true \
|
||||
|
@ -110,9 +109,6 @@ clean:
|
|||
/usr/bin/easypack: easypack.sh
|
||||
install -m 755 -c -o bin $? $@
|
||||
|
||||
/usr/bin/getpack: getpack.sh
|
||||
install -m 755 -c -o bin $? $@
|
||||
|
||||
/usr/bin/checkhier: checkhier.sh
|
||||
install -m 755 -c -o bin $? $@
|
||||
|
||||
|
|
|
@ -1,30 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ $# -ne 1 ]
|
||||
then echo "Usage: $0 <url>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$HOME" ]
|
||||
then echo "Where is your \$HOME? "
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -d "$HOME" ]
|
||||
then echo "Where is your \$HOME ($HOME) ? "
|
||||
exit 1
|
||||
fi
|
||||
|
||||
tmpdir=$HOME/getpack$$
|
||||
tmpfile=package
|
||||
tmpfiletar=$tmpfile.tar
|
||||
tmpfiletargz=$tmpfile.tar.gz
|
||||
|
||||
mkdir -m 700 $tmpdir || exit 1
|
||||
cd $tmpdir || exit 1
|
||||
|
||||
urlget "$1" >$tmpfiletargz
|
||||
|
||||
gzip -d $tmpfiletargz || exit 1
|
||||
tar xf $tmpfiletar || exit 1
|
||||
make && make install && echo "Ok."
|
|
@ -146,7 +146,6 @@ ALL = \
|
|||
prep \
|
||||
printf \
|
||||
printroot \
|
||||
printenv \
|
||||
proto \
|
||||
pwd \
|
||||
pwdauth \
|
||||
|
@ -636,10 +635,6 @@ printf: printf.c
|
|||
$(CCLD) -o $@ $<
|
||||
@install -S 4kw $@
|
||||
|
||||
printenv: printenv.c
|
||||
$(CCLD) -o $@ $<
|
||||
@install -S 4kw $@
|
||||
|
||||
printroot: printroot.c
|
||||
$(CCLD) -o $@ $<
|
||||
@install -S 4kw $@
|
||||
|
@ -1485,8 +1480,8 @@ install: \
|
|||
/usr/bin/printf: printf
|
||||
install -cs -o bin $< $@
|
||||
|
||||
/usr/bin/printenv: printenv
|
||||
install -cs -o bin $< $@
|
||||
/usr/bin/printenv: /usr/bin/env
|
||||
install -ls -o bin /usr/bin/env /usr/bin/printenv
|
||||
|
||||
/usr/bin/printroot: printroot
|
||||
install -cs -o bin $< $@
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char *argv[], char *envp[])
|
||||
{
|
||||
int p;
|
||||
for(p = 0; envp[p] && *envp[p]; p++) {
|
||||
printf("%s\n", envp[p]);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -7,6 +7,11 @@ env \- set environment for command
|
|||
.RI [ name\fB=\fIvalue "] ..."
|
||||
.RI [ utility
|
||||
.RI [ argument "...]]"
|
||||
.B printenv
|
||||
.RB [ \-ia ]
|
||||
.RI [ name\fB=\fIvalue "] ..."
|
||||
.RI [ utility
|
||||
.RI [ argument "...]]"
|
||||
.SH DESCRIPTION
|
||||
.B Env
|
||||
modifies its environment according to the
|
||||
|
@ -18,6 +23,9 @@ with the given arguments and the modified environment.
|
|||
If no utility is specified then the modified environment is printed as
|
||||
.IB name = value
|
||||
strings, one per line.
|
||||
.PP
|
||||
.B printenv
|
||||
is identical to env in every way and is included for backward compatibility
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
.B \-i
|
||||
|
|
Loading…
Reference in a new issue