Skip to content

Commit 793f803

Browse files
author
Paul Cobbaut
committed
Merge pull request #42 from paulcobbaut/master
typo's
2 parents 69cf821 + 10de809 commit 793f803

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/links/040_links_practice.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
<para>7. Find all files with inode number 2. What does this information tell you ?</para>
1010
<para>8. Look at the directories /etc/init.d/ /etc/rc2.d/ /etc/rc3.d/ ... do you see the links ?</para>
1111
<para>9. Look in /lib with ls -l...</para>
12-
<para>10. Use <command>find</command> to look in your home directory for regular files that do not(!) have one hard link.</para>
12+
<para>10. Use <command>find</command> to look in your home directory for regular files that have more than one hard link (hint: this is identical to all regular files that do not have exactly one hard link).</para>
1313
</section>

modules/links/050_links_solution.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
<screen>ls -l /etc/rc3.d</screen>
2121
<para>9. Look in /lib with ls -l...</para>
2222
<screen>ls -l /lib</screen>
23-
<para>10. Use <command>find</command> to look in your home directory for regular files that do not(!) have one hard link.</para>
23+
<para>10. Use <command>find</command> to look in your home directory for regular files that have more than one hard link (hint: this is identical to all regular files that do not have exactly one hard link).</para>
2424
<screen>find ~ ! -links 1 -type f</screen>
2525
</section>

modules/processes_jobs/050_processes_jobs_solution.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
[paul@RHEL4b ~]$ echo $$ $PPID
4949
4224 4223
5050
</screen>
51-
<para>The variables are now double quoted, but the current bash shell will replace $$ and $PPID while scanning the line, and before executing the bach -c command.</para>
51+
<para>The variables are now double quoted, but the current bash shell will replace $$ and $PPID while scanning the line, and before executing the <command>bash -c</command> command.</para>
5252
<screen>
5353
[paul@RHEL4b ~]$ bash -c "echo $$ $PPID"
5454
4224 4223

0 commit comments

Comments
 (0)