Fix /bin/ls usage string.

This commit is contained in:
Andreas Kling 2018-12-07 01:19:39 +01:00
parent 4f6438ec66
commit 829bf94de1
Notes: sideshowbarker 2024-07-19 16:08:13 +09:00

View file

@ -30,7 +30,7 @@ int main(int argc, char** argv)
flag_colorize = false;
break;
default:
fprintf(stderr, "usage: ls [-lvG] [path]\n");
fprintf(stderr, "usage: ls [-laG] [path]\n");
return 1;
}
}