A command-line tool built with Rust made by awesome sauce lagos (me).
coming soon... For now git clone the repo then do the next step.
cargo install --path .This will put the lcli binary in your ~/.cargo/bin folder, which should already be in your $PATH.
lcli ls # List files in current directory
lcli ls /path/to/dir # List files in a specific directorylcli time # Show the current local time in pretty formatlcli about # Display information about lcli and its creatorlcli calc add 5 3 # Add two numbers (5 + 3)
lcli calc subtract 10 4 # Subtract two numbers (10 - 4)
lcli calc multiply 6 7 # Multiply two numbers (6 * 7)
lcli calc divide 20 4 # Divide two numbers (20 / 4)
lcli calc sqrt 25 # Square root (5)
lcli calc sqrt 32 # Square root (5.656854)lcli quote random # Fetch and print a random quote
lcli quote create "Be yourself" "Oscar Wilde" # Create a custom quotelcli spam counter "Hello" 5 # Print "Hello" 5 times
lcli spam duration "Processing" 3 # Print "Processing" for 3 secondslcli file new myfile.txt # Create a new file in current directory
lcli file new myfile.txt /path/to/dir # Create a new file in a specific directory
lcli file delete /path/to/file.txt # Delete a file
lcli file move /path/to/old.txt /path/to/new.txt # Move a file
lcli file rename /path/to/old.txt /path/to/newname.txt # Rename a filelcli ls --json # Get ls output in JSON format
lcli time --json # Get time output in JSON format
lcli quote random --json # Get quote output in JSON formatBuilt with:
clapfor the CLI interface.owo-colorsfor beautiful terminal output.tabledfor pretty-printing data.
