diff --git a/README.md b/README.md index 6bd0e4f..0cb716d 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,19 @@ A cli program to quickly create and edit temporary files Requirements: python3 > 3.6, or a C compiler. -## Installation: +## Python Installation: mv skratch.py /usr/local/bin/skratch chmod +x /usr/local/bin/skratch -set an env variable for $EDITOR and/or $VISUAL in .bashrc +## C Installation: + + gcc skratch.c -o skratch + mv skratch /usr/local/bin/skratch + chmod +x /usr/local/bin/skratch + +## Post Installation +Set an env variable for $EDITOR and/or $VISUAL in .bashrc export EDITOR=vi export VISUAL=geany @@ -28,7 +35,3 @@ set an env variable for $EDITOR and/or $VISUAL in .bashrc `-s` adds a suffix to the file `-v` uses the VISUAL editor - -## Todo: - -`-s` does not currently work in the C version.