7 lines
125 B
Bash
Executable File
7 lines
125 B
Bash
Executable File
#! /bin/bash
|
|
if [ "$1" == "Debug" ]; then
|
|
./nameserver_d NameServerLinux.txt
|
|
else
|
|
./nameserver_r NameServerLinux.txt
|
|
fi
|