From d368aa56d265ad91925007bba534d06b4007f081 Mon Sep 17 00:00:00 2001 From: Shikiryu Date: Thu, 9 Feb 2017 16:11:33 +0100 Subject: [PATCH] =?UTF-8?q?:wrench:=20Formate=20les=20r=C3=A9ponses=20un?= =?UTF-8?q?=20peu=20mieux=20en=20MD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 47 +++++++++++++++++++++++------------------------ 1 file changed, 23 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 97aad74..03b15c0 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,23 @@ -echo "hello world" -pwd -ls -cat access.log -tail -n 5 access.log -grep "GET" access.log -grep -c -P '\t' file-with-tabs.txt -grep -l 500 * -ls | grep 'access.log*' -find . -type f -name "access.log*" -exec grep -hP '500' {} \; -find . -type f -name "access.log*" -exec grep -oP '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}' {} \; -??? -??? -cat access.log | sort -??? -??? -??? -rm -- -*rm -find . -type f -name "*.doc" -exec rm {} \; -??? -find . -type f -name "*.txt" -exec sed -i 's/challenges are difficult//g' {} \; -??? -find . -type f -exec basename {} \; - +* `echo "hello world"` +* `pwd` +* `ls` +* `cat access.log` +* `tail -n 5 access.log` +* `grep "GET" access.log` +* `grep -c -P '\t' file-with-tabs.txt` +* `grep -l 500 *` +* `ls | grep 'access.log*'` +* `find . -type f -name "access.log*" -exec grep -hP '500' {} \;` +* `find . -type f -name "access.log*" -exec grep -oP '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}' {} \;` +* `???` +* `???` +* `cat access.log | sort` +* `???` +* `???` +* `???` +* `rm -- -*rm` +* `find . -type f -name "*.doc" -exec rm {} \;` +* `???` +* `find . -type f -name "*.txt" -exec sed -i 's/challenges are difficult//g' {} \;` +* `???` +* `find . -type f -exec basename {} \;` \ No newline at end of file