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
| #!/bin/bash | |
| # ============================================================================== | |
| # KindleCleaner | |
| # ============================================================================== | |
| # Description: | |
| # Automatically removes the "Kindle Edition" citation and trailing newlines | |
| # from text copied from the Kindle for Mac app. | |
| # | |
| # Usage: |
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
| #!/bin/bash | |
| DOTPATH=~/.dotfiles | |
| GITHUB_URL=git@github.com:koukikitamura/dotfiles.git | |
| if [ -d "$DOTPATH" ]; then | |
| echo "($DOTPATH) has been setup." | |
| exit 1 | |
| fi |
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
| /* | |
| * This file was generated by the Gradle 'init' task. | |
| * | |
| * This generated file contains a sample Kotlin application project to get you started. | |
| * For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle | |
| * User Manual available at https://docs.gradle.org/7.5.1/userguide/building_java_projects.html | |
| */ | |
| plugins { | |
| // Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin. |