diff --git a/README.md b/README.md index 4f4d1e4..ea049f5 100644 --- a/README.md +++ b/README.md @@ -1034,8 +1034,13 @@ Soft links can be created between different file systems while hard link can be Fix the following commands: * sed "s/1/2/g' /tmp/myFile - * find . -iname \*.yaml -exec sed -i "s/1/2/g" {} ;
- + * find . -iname \*.yaml -exec sed -i "s/1/2/g" {} ; + +
+ +sed 's/1/2/g' /tmp/myFile + find . -iname "*.yaml" -exec sed -i "s/1/2/g" {} \; +
Explain what is stored in each of the following paths and if there is anything unique about it:
@@ -1097,12 +1102,13 @@ To view all available signals run `kill -l`
What are the possible states of a process in Linux?
- +
 Running
 Waiting
 Stopped
 Terminated
 Zombie
+