diff --git a/README.md b/README.md index 7c4077d..a2cf854 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,8 @@ smart people at [Hashrocket](http://hashrocket.com/). - [Rails](#rails) - [Ruby](#ruby) - [tmux](#tmux) +- [Unix](#unix) - [Vim](#vim) -- [Zsh](#zsh) --- @@ -191,6 +191,31 @@ smart people at [Hashrocket](http://hashrocket.com/). - [Swap Split Panes](tmux/swap-split-panes.md) - [tmux in your tmux](tmux/tmux-in-your-tmux.md) +### unix + +- [All The Environment Variables](unix/all-the-environment-variables.md) +- [Cat A File With Line Numbers](unix/cat-a-file-with-line-numbers.md) +- [Check If A Port Is In Use](unix/check-if-a-port-is-in-use.md) +- [Clear The Screen](unix/clear-the-screen.md) +- [Create A File Descriptor with Process Substitution](unix/create-a-file-descriptor-with-process-substitution.md) +- [Do Not Overwrite Existing Files](unix/do-not-overwrite-existing-files.md) +- [File Type Info With File](unix/file-type-info-with-file.md) +- [Find Newer Files](unix/find-newer-files.md) +- [Global Substitution On The Previous Command](unix/global-substitution-on-the-previous-command.md) +- [Hexdump A Compiled File](unix/hexdump-a-compiled-file.md) +- [Killing A Frozen SSH Session](unix/killing-a-frozen-ssh-session.md) +- [List All The Say Voices](unix/list-all-the-say-voices.md) +- [Only Show The Matches](unix/only-show-the-matches.md) +- [Repeat Yourself](unix/repeat-yourself.md) +- [Saying Yes](unix/saying-yes.md) +- [Search History](unix/search-history.md) +- [Securely Remove Files](unix/securely-remove-files.md) +- [SSH With Port Forwarding](unix/ssh-with-port-forwarding.md) +- [Switch Versions of a Brew Formula](unix/switch-versions-of-a-brew-formula.md) +- [Watch The Difference](unix/watch-the-difference.md) +- [Watch This Run Repeatedly](unix/watch-this-run-repeatedly.md) +- [Where Are The Binaries?](unix/where-are-the-binaries.md) + ### vim - [Absolute And Relative Line Numbers](vim/absolute-and-relative-line-numbers.md) @@ -253,31 +278,6 @@ smart people at [Hashrocket](http://hashrocket.com/). - [Whole Line Auto-Completion](vim/whole-line-auto-completion.md) - [Wrap With Some Room](vim/wrap-with-some-room.md) -### zsh - -- [All The Environment Variables](zsh/all-the-environment-variables.md) -- [Cat A File With Line Numbers](zsh/cat-a-file-with-line-numbers.md) -- [Check If A Port Is In Use](zsh/check-if-a-port-is-in-use.md) -- [Clear The Screen](zsh/clear-the-screen.md) -- [Create A File Descriptor with Process Substitution](zsh/create-a-file-descriptor-with-process-substitution.md) -- [Do Not Overwrite Existing Files](zsh/do-not-overwrite-existing-files.md) -- [File Type Info With File](zsh/file-type-info-with-file.md) -- [Find Newer Files](zsh/find-newer-files.md) -- [Global Substitution On The Previous Command](zsh/global-substitution-on-the-previous-command.md) -- [Hexdump A Compiled File](zsh/hexdump-a-compiled-file.md) -- [Killing A Frozen SSH Session](zsh/killing-a-frozen-ssh-session.md) -- [List All The Say Voices](zsh/list-all-the-say-voices.md) -- [Only Show The Matches](zsh/only-show-the-matches.md) -- [Repeat Yourself](zsh/repeat-yourself.md) -- [Saying Yes](zsh/saying-yes.md) -- [Search History](zsh/search-history.md) -- [Securely Remove Files](zsh/securely-remove-files.md) -- [SSH With Port Forwarding](zsh/ssh-with-port-forwarding.md) -- [Switch Versions of a Brew Formula](zsh/switch-versions-of-a-brew-formula.md) -- [Watch The Difference](zsh/watch-the-difference.md) -- [Watch This Run Repeatedly](zsh/watch-this-run-repeatedly.md) -- [Where Are The Binaries?](zsh/where-are-the-binaries.md) - ## About I shamelessly stole this idea from diff --git a/zsh/all-the-environment-variables.md b/unix/all-the-environment-variables.md similarity index 100% rename from zsh/all-the-environment-variables.md rename to unix/all-the-environment-variables.md diff --git a/zsh/cat-a-file-with-line-numbers.md b/unix/cat-a-file-with-line-numbers.md similarity index 100% rename from zsh/cat-a-file-with-line-numbers.md rename to unix/cat-a-file-with-line-numbers.md diff --git a/zsh/check-if-a-port-is-in-use.md b/unix/check-if-a-port-is-in-use.md similarity index 100% rename from zsh/check-if-a-port-is-in-use.md rename to unix/check-if-a-port-is-in-use.md diff --git a/zsh/clear-the-screen.md b/unix/clear-the-screen.md similarity index 100% rename from zsh/clear-the-screen.md rename to unix/clear-the-screen.md diff --git a/zsh/create-a-file-descriptor-with-process-substitution.md b/unix/create-a-file-descriptor-with-process-substitution.md similarity index 100% rename from zsh/create-a-file-descriptor-with-process-substitution.md rename to unix/create-a-file-descriptor-with-process-substitution.md diff --git a/zsh/do-not-overwrite-existing-files.md b/unix/do-not-overwrite-existing-files.md similarity index 100% rename from zsh/do-not-overwrite-existing-files.md rename to unix/do-not-overwrite-existing-files.md diff --git a/zsh/file-type-info-with-file.md b/unix/file-type-info-with-file.md similarity index 100% rename from zsh/file-type-info-with-file.md rename to unix/file-type-info-with-file.md diff --git a/zsh/find-newer-files.md b/unix/find-newer-files.md similarity index 100% rename from zsh/find-newer-files.md rename to unix/find-newer-files.md diff --git a/zsh/global-substitution-on-the-previous-command.md b/unix/global-substitution-on-the-previous-command.md similarity index 100% rename from zsh/global-substitution-on-the-previous-command.md rename to unix/global-substitution-on-the-previous-command.md diff --git a/zsh/hexdump-a-compiled-file.md b/unix/hexdump-a-compiled-file.md similarity index 100% rename from zsh/hexdump-a-compiled-file.md rename to unix/hexdump-a-compiled-file.md diff --git a/zsh/killing-a-frozen-ssh-session.md b/unix/killing-a-frozen-ssh-session.md similarity index 100% rename from zsh/killing-a-frozen-ssh-session.md rename to unix/killing-a-frozen-ssh-session.md diff --git a/zsh/list-all-the-say-voices.md b/unix/list-all-the-say-voices.md similarity index 100% rename from zsh/list-all-the-say-voices.md rename to unix/list-all-the-say-voices.md diff --git a/zsh/only-show-the-matches.md b/unix/only-show-the-matches.md similarity index 100% rename from zsh/only-show-the-matches.md rename to unix/only-show-the-matches.md diff --git a/zsh/repeat-yourself.md b/unix/repeat-yourself.md similarity index 100% rename from zsh/repeat-yourself.md rename to unix/repeat-yourself.md diff --git a/zsh/saying-yes.md b/unix/saying-yes.md similarity index 100% rename from zsh/saying-yes.md rename to unix/saying-yes.md diff --git a/zsh/search-history.md b/unix/search-history.md similarity index 100% rename from zsh/search-history.md rename to unix/search-history.md diff --git a/zsh/securely-remove-files.md b/unix/securely-remove-files.md similarity index 100% rename from zsh/securely-remove-files.md rename to unix/securely-remove-files.md diff --git a/zsh/ssh-with-port-forwarding.md b/unix/ssh-with-port-forwarding.md similarity index 100% rename from zsh/ssh-with-port-forwarding.md rename to unix/ssh-with-port-forwarding.md diff --git a/zsh/switch-versions-of-a-brew-formula.md b/unix/switch-versions-of-a-brew-formula.md similarity index 100% rename from zsh/switch-versions-of-a-brew-formula.md rename to unix/switch-versions-of-a-brew-formula.md diff --git a/zsh/watch-the-difference.md b/unix/watch-the-difference.md similarity index 100% rename from zsh/watch-the-difference.md rename to unix/watch-the-difference.md diff --git a/zsh/watch-this-run-repeatedly.md b/unix/watch-this-run-repeatedly.md similarity index 100% rename from zsh/watch-this-run-repeatedly.md rename to unix/watch-this-run-repeatedly.md diff --git a/zsh/where-are-the-binaries.md b/unix/where-are-the-binaries.md similarity index 100% rename from zsh/where-are-the-binaries.md rename to unix/where-are-the-binaries.md