aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-01-13 04:43:48 +0000
committerErik Andersen <andersen@codepoet.org>2000-01-13 04:43:48 +0000
commit05df239ed90584156b820dbf3ede638208eb440f (patch)
tree990a3d6a9beb21420fae1f7d14886c84a5ce3c12 /docs
parent9a9a261569df0c88038de48eb233890ca189e9c0 (diff)
downloadbusybox-w32-05df239ed90584156b820dbf3ede638208eb440f.tar.gz
busybox-w32-05df239ed90584156b820dbf3ede638208eb440f.tar.bz2
busybox-w32-05df239ed90584156b820dbf3ede638208eb440f.zip
Bug fixes.
-Erik
Diffstat (limited to 'docs')
-rw-r--r--docs/CommandList104
1 files changed, 35 insertions, 69 deletions
diff --git a/docs/CommandList b/docs/CommandList
index 39c72a17a..8c0a01e23 100644
--- a/docs/CommandList
+++ b/docs/CommandList
@@ -12,6 +12,9 @@ ________________________________________________________________________________
12 BusyBox 0.38, Functions and the Arguments they Support 12 BusyBox 0.38, Functions and the Arguments they Support
13 13
14 14
15New Apps that have been added to BusyBox since this document was written:
16 ping, hostname, mkfifo, free, tail, du, tee, head, sort, uniq, lsmod, rmmod, fbset, and loadacm.
17
15 18
16 19
17______________________________________________________________________________________________________ 20______________________________________________________________________________________________________
@@ -154,7 +157,7 @@ cp [option] fileA fileB
154 157
155 attributes group permissions and time information. 158 attributes group permissions and time information.
156 159
157 -R recursive Copy to the current location and all subdirectories in the tree. 160 -R recursive Copies directories recursively
158 161
159 162
160 163
@@ -321,7 +324,7 @@ fsck.minix [-larvsmf] /dev/name
321 324
322 -r Perform interactive repairs. 325 -r Perform interactive repairs.
323 326
324 -q Perform automatic repairs 327 -a Perform automatic repairs
325 328
326 -v Verbose 329 -v Verbose
327 330
@@ -712,29 +715,30 @@ ________________________________________________________________________________
712 715
713 716
714 717
715
716sed 718sed
719 Usage: sed [-n] -e script [file...]
717 720
718 Sed scripts are subject to the following format: 's/regexp/replacement/[gp]' which attempts to 721 Allowed sed scripts come in the following form:
719 722 'ADDR [!] COMMAND'
720 to match regexp against the pattern space and if successful, replaces the matched portion with
721
722 replacement -r or -R Remove contents of directories recursively.
723
724
725
726
727________________________________________________________________________________________________________
728
729
730
731
732 723
733rmdir [OPTION] ... directory 724 where address ADDR can be:
725 NUMBER Match specified line number
726 $ Match last line
727 /REGEXP/ Match specified regexp
728 (! inverts the meaning of the match)
734 729
735 Remove directories if they are empty. 730 and COMMAND can be:
731 s/regexp/replacement/[igp]
732 which attempt to match regexp against the pattern space
733 and if successful replaces the matched portion with replacement.
736 734
735 aTEXT
736 which appends TEXT after the pattern space
737 Options:
738 -e add the script to the commands to be executed
739 -n suppress automatic printing of pattern space
737 740
741 This version of sed matches full regular expresions.
738 742
739 743
740 744
@@ -744,51 +748,6 @@ ________________________________________________________________________________
744 748
745 749
746 750
747rmdir [OPTION] ... directory
748
749 Remove directories if they are empty.
750
751
752
753
754________________________________________________________________________________________________________
755
756
757
758
759
760sed
761
762 Sed scripts are subject to the following format: 's/regexp/replacement/[gp]' which attempts to
763
764 match regexp against the pattern space and if successful, replaces the matched portion with
765
766 replacement. This version of sed matches
767
768 full regular expressions.
769
770 -e Add the script to the commands to be executed.
771
772 -n Suppress automatic printing of pattern space..
773
774 -e Add the script to the commands to be executed.
775
776 -n Suppress automatic printing of pattern space..
777
778 -e Add the script to the commands to be executed.
779
780 -n Suppress automatic printing of pattern space.
781
782
783
784
785
786________________________________________________________________________________________________________
787
788
789
790
791
792sleep N 751sleep N
793 752
794 Pause for N seconds. 753 Pause for N seconds.
@@ -977,10 +936,14 @@ ________________________________________________________________________________
977 936
978zcat [options] files 937zcat [options] files
979 938
980 Uncompress file from gzip, gunzip or compress command or standard input if file is '-'. 939 Usage: zcat [OPTION]... FILE
981 940
982 -c Write output to standard output. 941 Uncompress FILE (or standard input if FILE is '-').
942 (When invoked as zcat, defaults to having -c turned on)
983 943
944 Options:
945 -c Write output to standard output
946 -t Test compressed file integrity
984 947
985 948
986 949
@@ -991,7 +954,7 @@ ________________________________________________________________________________
991 954
992 955
993 956
994gunzip (Same as zcat) 957gunzip (Same as zcat, but without the "-c" option.)
995 958
996 959
997 960
@@ -1003,10 +966,13 @@ ________________________________________________________________________________
1003 966
1004 967
1005 968
969gzip [OPTION]... FILE
1006 970
1007gzip (Same as zcat) 971 Compress FILE with maximum compression.
1008 972 When FILE is -, reads standard input. Implies -c.
1009 973
974 Options:
975 -c Write output to standard output instead of FILE.gz
1010 976
1011 977
1012 978