diff --git a/README.md b/README.md index 71ccf76..34935e1 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,6 @@ Intended for use when a program that outputs to `stdout` is called from a non-terminal or graphical program, making the `stdout` output inaccessible. The output can instead be piped into this script to make it readable as a system notification. - `stopwatch.sh`: simple stopwatch script that counts the elapsed time in seconds, and displays it in the format HH:MM:SS. - - `suicidal_script.sh`: a script that deletes itself. Doesn't do anything, just a proof of concept. - `sync_music.sh`: script to sync my Android phone's music library to the contents of my `~/media/music/` directory, i.e. copy my music library from my laptop to my phone. - `trippy.sh`: script that displays random visual data to the screen (only works when called from a TTY, by a user who has write access to the `fb0` device, e.g. `root`). diff --git a/suicidal_script.sh b/suicidal_script.sh deleted file mode 100755 index 62e9e2b..0000000 --- a/suicidal_script.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -# A script that deletes itself - -rm "$0"