From 7a5903d069f1eb0b81639f4ab5ebfceeb3f3b075 Mon Sep 17 00:00:00 2001 From: hkurj <663831938@qq.com> Date: Sat, 21 Jan 2017 16:20:08 +0800 Subject: [PATCH] ing --- .../tech/20170116 Getting started with shell scripting.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sources/tech/20170116 Getting started with shell scripting.md b/sources/tech/20170116 Getting started with shell scripting.md index c67a58cfa4..800e976590 100644 --- a/sources/tech/20170116 Getting started with shell scripting.md +++ b/sources/tech/20170116 Getting started with shell scripting.md @@ -1,6 +1,7 @@ +hkurj translating Getting started with shell scripting ============================================================ - ![Getting started with shell scripting](https://opensource.com/sites/default/files/styles/image-full-size/public/images/business/osdc_terminals.png?itok=QmkPW7P1 "Getting started with shell scripting") + ![Getting started with shell scripting](https://opensource.com/sites/default/files/styles/image-full-size/public/images/business/osdc_terminals.png?itok=QmkPW7P1 "Getting started with shell scripting") Image by :  @@ -28,7 +29,7 @@ You can generate your own **hello world** script from a terminal window. Mind ``` $ echo "#\!/bin/sh" > hello.sh -$ echo "echo 'hello world' " >> hello.sh +$ echo "echo 'hello world' " >> hello.sh ``` As you can see, writing a shell script consists, with the exception of the first line, of echoing or pasting commands into a text file.