Skip to content

Commit d51a486

Browse files
committed
Answers added for challenges called 'Sort Command #1' and 'Sort Command #2'.
1 parent 43a9ffc commit d51a486

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/sh
2+
3+
# Sort Command #1
4+
# https://www.hackerrank.com/challenges/text-processing-sort-1/problem?isFullScreen=true
5+
6+
sort
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/sh
2+
3+
# Sort Command #2
4+
# https://www.hackerrank.com/challenges/text-processing-sort-2/problem?isFullScreen=true
5+
6+
sort -r

linux-shell/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@
2626
| 024 | [Tail of a Text File #2](https://www.hackerrank.com/challenges/text-processing-tail-2/problem?isFullScreen=true) | [00024_HackerrankLinuxShell](./00024_HackerrankLinuxShell.sh) |
2727
| 025 | ['Tr' Command #1](https://www.hackerrank.com/challenges/text-processing-tr-1/problem?isFullScreen=true) | [00025_HackerrankLinuxShell](./00025_HackerrankLinuxShell.sh) |
2828
| 026 | ['Tr' Command #2](https://www.hackerrank.com/challenges/text-processing-tr-2/problem?isFullScreen=true) | [00026_HackerrankLinuxShell](./00026_HackerrankLinuxShell.sh) |
29-
| 026 | ['Tr' Command #3](https://www.hackerrank.com/challenges/text-processing-tr-3/problem?isFullScreen=true) | [00027_HackerrankLinuxShell](./00027_HackerrankLinuxShell.sh) |
29+
| 027 | ['Tr' Command #3](https://www.hackerrank.com/challenges/text-processing-tr-3/problem?isFullScreen=true) | [00027_HackerrankLinuxShell](./00027_HackerrankLinuxShell.sh) |
30+
| 028 | [Sort Command #1](https://www.hackerrank.com/challenges/text-processing-sort-1/problem?isFullScreen=true) | [00028_HackerrankLinuxShell](./00028_HackerrankLinuxShell.sh) |
31+
| 029 | [Sort Command #2](https://www.hackerrank.com/challenges/text-processing-sort-2/problem?isFullScreen=true) | [00029_HackerrankLinuxShell](./00029_HackerrankLinuxShell.sh) |

0 commit comments

Comments
 (0)