diff options
author | Brian Chu <brianmchu42@gmail.com> | 2021-02-21 00:42:41 -0800 |
---|---|---|
committer | Brian Chu <brianmchu42@gmail.com> | 2021-02-21 00:42:41 -0800 |
commit | 9208e93bb9487e95455f0252866954d019426a5e (patch) | |
tree | f9847ed0d1c9cf732e2803c070bfa0a955c2cf9d | |
parent | 2b5ec34372745361d51db89e5d31df6d00f95c0a (diff) | |
download | sarcasticizer-9208e93bb9487e95455f0252866954d019426a5e.tar.gz |
fix path in shell script
-rwxr-xr-x | sarcasticizer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sarcasticizer b/sarcasticizer index eff6823..0aea851 100755 --- a/sarcasticizer +++ b/sarcasticizer @@ -3,6 +3,6 @@ echo "This is the sarcasticizer! It makes text lOoK LIkE thIs!" echo "What are you trying to mock today?" read input -echo $input | ./main.rkt | xclip +echo $input | $HOME/bin/sarcasticizer/main.rkt | xclip echo "Your sarcasm is now copied and ready to go! Middle click where you want to paste to get your snark on!" |