Skip to content

Instantly share code, notes, and snippets.

@kwkr
kwkr / td.sh
Last active May 18, 2023 18:27
40 lines bash script for TODO list
#!/bin/bash
if [ ! -d "$HOME/.td" ]
then
mkdir "$HOME/.td"
fi
if [ $1 = 'a' ]
then
to_add=${@: 2}
echo "Added: \"$to_add\""
buildscript {
repositories {
mavenCentral()
maven { url \"https://plugins.gradle.org/m2/\" }
maven { url \"https://oss.sonatype.org/content/repositories/snapshots/\" }
jcenter()
google()
}
dependencies {
classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.6'
@kwkr
kwkr / bash.sh
Last active April 8, 2019 18:46
Test
echo "hello!"