From 8cebed155022395859cffc5428de3d9843fa3e1a Mon Sep 17 00:00:00 2001 From: surister Date: Thu, 28 Nov 2019 13:27:28 +0100 Subject: [PATCH] add answer + styling --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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
+