Quote:
Originally Posted by young_rhkid
[root@xxxx useraccount]# du -sh *
du: invalid option -- i
Try `du --help' for more information.
|
Since you did not pass the option i to the du command, it looks like you have a file called "-i" in the working directory. If this is the case you can try
The -- sign will end the list of options, that is all the arguments after -- are not interpreted as options! This is true for many *nix commands.