Skip to content

Commit

Permalink
Add Task 101 - v5
Browse files Browse the repository at this point in the history
  • Loading branch information
yeungegs committed Feb 13, 2017
1 parent 6bcd5e2 commit 4f773ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 0x02-shell_redirections/101-gifs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
find . -type f -name '*.gif' -printf '%f\n' | rev | cut -d '/' -f 1 | cut -d '.' -f 2 | rev | LC_ALL=C sort -f
find -name '*.gif' -type f -printf '%f\n' | LC_ALL=C sort -f | rev | cut -c 5- | rev

0 comments on commit 4f773ec

Please sign in to comment.