Sign up for a GitHub account Sign in All Gists dchest / 0 - UNIX Fifth Edition Created July 19, 2011 Code Revisions 5 Stars 179 Forks 11 /.sunken-menu-group /.sunken-menu-contents Embed HTTPS SSH You can clone with HTTPS or SSH . Download Gist /.only-with-full-nav UNIX V5, OpenBSD, Plan 9, FreeBSD, and GNU coreutils implementations of echo.c View 0 - UNIX Fifth Edition 0 - UNIX Fifth Edition Raw File suppressed. Click to show. 1 2 3 4 5 6 7 8 9 10 main(argc, argv) int argc; char *argv[]; { int i; argc--; for(i=1; i<=argc; i++) printf("%s%c", argv[i], i==argc? '\n': ' '); } View 0 - UNIX Fifth Edition 1 - OpenBSD Raw File suppressed. Click to show. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1...