7 lines
190 B
Bash
7 lines
190 B
Bash
|
|
#!/bin/bash
|
||
|
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
|
||
|
|
export PATH
|
||
|
|
LANG=en_US.UTF-8
|
||
|
|
|
||
|
|
echo 'The development environment only needs to be downloaded again!'
|
||
|
|
exit 0
|