Created
May 22, 2015 11:57
-
-
Save okisanjp/51eec0a62a8fa4dcdfb6 to your computer and use it in GitHub Desktop.
GNU lsをファイル出力するときは標準出力と見た目が違うから気をつける ref: http://qiita.com/okisanjp/items/46086d5af38babd4e2a5
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 characters
| $ ls | |
| Plugin Vendor app composer.json composer.lock composer.phar fabfile.py fabfile.pyc |
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 characters
| $ ls | tee ~/test.txt | |
| Plugin | |
| Vendor | |
| app | |
| composer.json | |
| composer.lock | |
| composer.phar | |
| fabfile.py | |
| fabfile.pyc |
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 characters
| $ ls > ~/test.txt && cat ~/test.txt | |
| Plugin | |
| Vendor | |
| app | |
| composer.json | |
| composer.lock | |
| composer.phar | |
| fabfile.py | |
| fabfile.pyc |
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 characters
| $ ls -1 | |
| Plugin | |
| Vendor | |
| app | |
| composer.json | |
| composer.lock | |
| composer.phar | |
| fabfile.py | |
| fabfile.pyc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment