Hacker News new | ask | show | jobs
by dbt00 1896 days ago
Java never supported single letter options, which is why any other meta-character is necessary at all.

ls -la == ls -l -a, but then you can't ls -all because it's the same, you need --all (or +all).

Java supports -cp or -classpath but in both cases the token after the - always identifies a single option, so you don't need the second dash.

1 comments

I get the logic, but it still creates cognitive load to have to keep track of what a given cli utility supports