Exercise: Verify, Repeat¶
In the exercises
, you created a tree rooted at /tmp/firstname.lastname/parent
.
Verify that all is correct
The hierarchy should look as follows,
$ tree /tmp/firstname.lastname/parent /tmp/firstname.lastname/parent ├── child │ ├── business-card │ ├── garbage1.txt │ └── garbage2.txt ├── garbage1.txt ├── garbage2.txt └── hello
The file
/tmp/firstname.lastname/parent/hello
should look as follows,$ cat /tmp/firstname.lastname/parent/hello hello sweetheart
The file
/tmp/firstname.lastname/parent/child/business-card
should contain something like,$ cat /tmp/firstname.lastname/parent/child/business-card Joerg Faschingbauer Prankergasse 33 8020 Graz
If any of the above is not the case, remove
/tmp/firstname.lastname/parent
again recursively, and recreate the hierarchy.Repeat until successful!