Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo: 'eat'? Should be 'cat'. #1

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/checkhosts
Expand Up @@ -72,7 +72,7 @@ HOSTNAMES_ONLY='no'
# outputs : help message

usage () {
eat <<EOF
cat <<EOF
Usage: ${0##*/} [-HIPSbh] [-A authmode] [-o dir] [-r script] -f file
-A Specify ssh authentication mode.
-H Do not use a headless account.
Expand Down Expand Up @@ -190,7 +190,8 @@ checkhost () {
outfile="${OUTFILE_EXITCODE}_${rval}"
fi

echo "${host},${ip},${host_output}" | tr '' '\n' >> ${outfile}
echo "${host},${ip},${host_output}" | tr '
' '\n' >> ${outfile}
}

# function : process_input_files
Expand Down