move help text from include/usage.src.h to coreutils/*.c

Signed-off-by: Pere Orga <gotrunks@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Pere Orga
2011-03-31 14:43:25 +02:00
committed by Denys Vlasenko
parent e3d8d077b7
commit 34425389e0
67 changed files with 1070 additions and 1055 deletions

View File

@ -18,6 +18,21 @@
* time suffixes for seconds, minutes, hours, and days.
*/
//usage:#define sleep_trivial_usage
//usage: IF_FEATURE_FANCY_SLEEP("[") "N" IF_FEATURE_FANCY_SLEEP("]...")
//usage:#define sleep_full_usage "\n\n"
//usage: IF_NOT_FEATURE_FANCY_SLEEP("Pause for N seconds")
//usage: IF_FEATURE_FANCY_SLEEP(
//usage: "Pause for a time equal to the total of the args given, where each arg can\n"
//usage: "have an optional suffix of (s)econds, (m)inutes, (h)ours, or (d)ays")
//usage:
//usage:#define sleep_example_usage
//usage: "$ sleep 2\n"
//usage: "[2 second delay results]\n"
//usage: IF_FEATURE_FANCY_SLEEP(
//usage: "$ sleep 1d 3h 22m 8s\n"
//usage: "[98528 second delay results]\n")
#include "libbb.h"
/* Do not make this applet NOFORK. It breaks ^C-ing of pauses in shells */