My collection of bash one-liners to be used as reference to write more complex scripts.
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
| wget https://download.samba.org/pub/rsync/rsync-3.1.2.tar.gz | |
| wget https://download.samba.org/pub/rsync/rsync-patches-3.1.2.tar.gz | |
| tar xzvf rsync-3.1.2.tar.gz | |
| tar xzvf rsync-patches-3.1.2.tar.gz | |
| cd rsync-3.1.2/ | |
| patch -p1 <patches/detect-renamed.diff |
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
| /* Selectors */ | |
| $("button"); // by tag name | |
| $(".animated"); // by class name | |
| $("#button3"); // by ID | |
| $("someselector:nth-child(2)"); | |
| /* CSS */ | |
| $(selector).addClass("someclass"); | |
| $(selector).removeClass("someclass"); | |
| $(selector).css("color", "blue"); |
NewerOlder