Kart Business Project

Predictions for the Future of Programming Future in 2030

OCR Software made by Abanoub Hanna - Software Developer

All Posts

475 posts

Jenv: Manage the "JAVA_HOME" environment variable

Jenv: Manage the "JAVA_HOME" environment variable

jenv is a command-line tool to manage the “JAVA_HOME” environment variable. Add a Java version to jEnv: jenv add path/to/jdk_home Display the current JDK version used: jenv version Display …

Jello: a command-line JSON processor using Python syntax

Jello: a command-line JSON processor using Python syntax

jello is a command-line JSON processor using Python syntax. Pretty-print JSON or JSON-Lines data from stdin to stdout: cat file.json | jello Output a schema of JSON or JSON Lines data from stdin to …

Jekyll: static site generator | command-line cheat-sheet

Jekyll: static site generator | command-line cheat-sheet

jekyll is a simple, blog-aware, static site generator. Generate a development server that will run at http://localhost:4000/ : jekyll serve Enable incremental regeneration: jekyll serve --incremental …

jdupes: duplicate file finder

jdupes: duplicate file finder

jdupes is a command-line program to find duplicate files. A powerful duplicate file finder and an enhanced fork of fdupes. Search a single directory: jdupes path/to/directory Search multiple …

jdeps: Java class dependency analyzer

jdeps: Java class dependency analyzer

jdeps is a command-line program to analyze dependencies of Java class. It is Java class dependency analyzer. Analyze the dependencies of a .jar or .class file: jdeps path/to/filename.class Print a …

jc: convert the output of multiple commands to JSON

jc: convert the output of multiple commands to JSON

jc is a command-line program to convert the output of multiple commands to JSON. Convert command output to JSON via pipe: ifconfig | jc --ifconfig Convert command output to JSON via magic syntax: jc …

jbang: create, edit and run self-contained source-only Java programs

jbang: create, edit and run self-contained source-only Java programs

jbang is a command-line program to easily create, edit and run self-contained source-only Java programs. Initialize a simple Java class: jbang init path/to/file.java Initialize a Java class (useful …

disassemble class files and list them | javap cheat-sheeet

disassemble class files and list them | javap cheat-sheeet

javap is a command-line to disassemble class files and list them. Disassemble and list one or more .class files: javap path/to/file1.class path/to/file2.class ... Disassemble and list a built-in class …

Generate Java API docs | javadoc cheat-sheet

Generate Java API docs | javadoc cheat-sheet

javadoc is a command-line tool to generate Java API documentation in HTML format from source code. Generate documentation for Java source code and save the result in a directory: javadoc -d …

Java application compiler | Javac cheat-sheet

Java application compiler | Javac cheat-sheet

javac is Java application compiler. Compile a .java file: javac path/to/file.java Compile several .java files: javac path/to/file1.java path/to/file2.java ... Compile all .java files in current …