mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
6 lines
102 B
Bash
6 lines
102 B
Bash
|
|
||
|
# If there's no vi link, take over:
|
||
|
if [ ! -r usr/bin/vi ]; then
|
||
|
( cd usr/bin ; ln -sf vim vi )
|
||
|
fi
|