Browse Source

feat: ignore first line of serverlist.csv

pull/2217/head
Daniel Gibbs 7 years ago
parent
commit
21c035aa28
  1. 2
      linuxgsm.sh

2
linuxgsm.sh

@ -287,7 +287,7 @@ if [ "${shortname}" == "core" ]; then
if [ "${userinput}" == "list" ]; then
{
awk -F "," '{print $2 "\t" $3}' "${serverlist}"
tail -n +2 "${serverlist}"|awk -F "," '{print $2 "\t" $3}'
} | column -s $'\t' -t | more
exit
elif [ "${userinput}" == "install" ]||[ "${userinput}" == "i" ]; then

Loading…
Cancel
Save