10 lines
No EOL
162 B
Bash
10 lines
No EOL
162 B
Bash
#!/bin/bash
|
|
|
|
line=$(head -n 1 /etc/hosts)
|
|
echo "$line tellform.dev $(hostname)" >> /etc/hosts
|
|
|
|
# Restart sendmail
|
|
service sendmail restart
|
|
|
|
# Run Server
|
|
npm start |