Browse Source

Some typographical and grammatical corrections.

Peter Pentchev 13 years ago
parent
commit
e6776a2a64
2 changed files with 8 additions and 9 deletions
  1. 3
    3
      filejoinfs.c
  2. 5
    6
      readme.txt

+ 3
- 3
filejoinfs.c View File

@@ -26,10 +26,10 @@
26 26
 #         gcc -Wall -Wextra `pkg-config fuse --cflags --libs` filejoinfs.c -lfuse -o filejoinfs
27 27
 #
28 28
 #  To use it:
29
-#       1. Install fuse module
29
+#       1. Install the FUSE module
30 30
 #             sudo modprobe fuse
31 31
 #
32
-#       2. Create file list
32
+#       2. Create the list of files to join
33 33
 #             echo /etc/group >> filelist.txt
34 34
 #             echo /etc/issue >> filelist.txt
35 35
 #             echo /etc/passwd >> filelist.txt
@@ -43,7 +43,7 @@
43 43
 #       5. Check the result with
44 44
 #             cat joined.txt
45 45
 #
46
-#          You will see the contents of files listed in filelist.txt
46
+#          You will see the contents of all the files listed in filelist.txt
47 47
 #
48 48
 #       6. Unmount the fs
49 49
 #             fusermount -u joined.txt

+ 5
- 6
readme.txt View File

@@ -1,15 +1,14 @@
1 1
 filejoinfs v1.0
2 2
 
3
-filejoinfs is fuse module that allows joining several files as one.
3
+filejoinfs is a FUSE module that allows several files to be joined into one.
4 4
 
5
-To compile the program run:
6
-       gcc -Wall -Wextra `pkg-config fuse --cflags --libs` filejoinfs.c -lfuse -o filejoinfs
5
+To compile the program run "make".
7 6
 
8 7
 To use it:
9
-     1. Install fuse module
8
+     1. Install the FUSE module
10 9
            sudo modprobe fuse
11 10
 
12
-     2. Create file list
11
+     2. Create the list of files to join
13 12
            echo /etc/group >> filelist.txt
14 13
            echo /etc/issue >> filelist.txt
15 14
            echo /etc/passwd >> filelist.txt
@@ -23,7 +22,7 @@ To use it:
23 22
      5. Check the result with
24 23
            cat joined.txt
25 24
 
26
-        You will see the contents of files listed in filelist.txt
25
+        You will see the contents of all the files listed in filelist.txt
27 26
 
28 27
      6. Unmount the fs
29 28
            fusermount -u joined.txt

Loading…
Cancel
Save