Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit d350ff6

Browse files
Fix broken bash code from double to single quotes
1 parent 695a5ff commit d350ff6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎notes/unix_outline.org‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1271,9 +1271,9 @@ operate on.
12711271
all : file1_count.txt file2_count.txt file3_count.txt
12721272

12731273
create :
1274-
echo -e "1\n2\n3\n4\n5\n6" > file1.txt
1275-
echo -e "Hello, world!" > file2.txt
1276-
echo -e "We're learning bash programming!" > file3.txt
1274+
echo -e '1\n2\n3\n4\n5\n6' > file1.txt
1275+
echo -e 'Hello, world!' > file2.txt
1276+
echo -e "We are learning bash programming!' > file3.txt
12771277

12781278
%_count.txt : %.txt
12791279
wc $< > $@

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /