Revisions
-
Mark Mazumder renamed this gist
Jun 16, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Mark Mazumder revised this gist
Jun 15, 2015 . 1 changed file with 5 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,11 @@ #printf RUN printf '#!/bin/bash\n\ echo hello world from line 1\n\ echo hello world from line 2\n'\ > /tmp/hello ## or you can use >> RUN cat /tmp/hello #echo RUN echo -e '#!/bin/bash\n\ -
abn revised this gist
Oct 9, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,11 @@ #printf RUN printf '#!/bin/bash\n\ echo hello world from line 1\n\ echo hello world from line 2'\ >> /tmp/hello #echo RUN echo -e '#!/bin/bash\n\ echo hello world from line 1\n\ echo hello world from line 2'\ >> /tmp/hello -
abn revised this gist
Oct 9, 2014 . 1 changed file with 10 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,11 @@ #printf RUN printf '#!/bin/bash\n \ echo hello world from line 1\n\ echo hello world from line 2'\ >> /tmp/hello #echo RUN echo -e '#!/bin/bash\n \ echo hello world from line 1\n\ echo hello world from line 2'\ >> /tmp/hello -
abn created this gist
Oct 8, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ RUN printf '#!/bin/bash\ \necho hello world from line 1\ \necho hello world from line 2'\ >> /tmp/hello