Created
September 21, 2016 09:45
-
-
Save thbkrkr/ee1706c9d481be613b8dd6429a9d83ae to your computer and use it in GitHub Desktop.
chmod 400 && sed
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
| ~ thb@io | |
| > echo toto > toto | |
| ~ thb@io | |
| > chmod 400 toto | |
| ~ thb@io | |
| > cat toto | |
| toto | |
| ~ thb@io | |
| > sed -i "s|toto|tutu|" toto | |
| ~ thb@io | |
| > cat toto | |
| tutu | |
| ~ thb@io | |
| > ll toto | |
| -r-------- 1 thb thb 5 sept. 21 11:44 toto | |
| ~ thb@io | |
| > sed -i "s|tut|WTF?|" toto | |
| ~ thb@io | |
| > cat toto | |
| WTF?u |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://permalink.gmane.org/gmane.comp.gnu.utils.bugs/18060