From 0370abb10a2c020287efce9fab9ba24414c0757f Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 17 Oct 2024 15:12:41 +0200 Subject: [PATCH] mjava to cjava, compile class --- .config/fish/conf.d/abbr.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/fish/conf.d/abbr.fish b/.config/fish/conf.d/abbr.fish index 40672b1..e1e1c0b 100644 --- a/.config/fish/conf.d/abbr.fish +++ b/.config/fish/conf.d/abbr.fish @@ -32,4 +32,4 @@ abbr ls "eza --icons=auto" abbr topgrade "topgrade; pacman-clean" abbr run "for i in (seq 100); ./program; end" abbr commit-undo "git reset --hard HEAD~1 && git push --force" -abbr mjava "java --enable-preview -cp bin App" +abbr cjava "find . -name "*.java" -print | xargs javac && java --enable-preview -cp bin App"