sortix-mirror/utils/echo.cpp

47 lines
1.2 KiB
C++
Raw Normal View History

/*******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011.
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
echo.cpp
Display a line of text.
*******************************************************************************/
2011-11-25 23:54:17 +00:00
#include <stdio.h>
#include <string.h>
int main(int argc, char* argv[])
{
int startfrom = 1;
bool trailingnewline = true;
if ( 1 < argc && strcmp(argv[1], "-n") == 0 )
{
trailingnewline = false;
startfrom = 2;
}
const char* prefix = "";
for ( int i = startfrom; i < argc; i++ )
{
printf("%s%s", prefix, argv[i]);
prefix = " ";
}
if ( trailingnewline ) { printf("\n"); }
return 0;
}