We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8080ee commit bd3958eCopy full SHA for bd3958e
scripts/gufi_du
@@ -283,13 +283,13 @@ def run(argv, config_path):
283
284
rows += 1
285
286
- raw = int(raw) # block count or octets
+ raw = int(raw)
287
288
- # number of blocks used by this directory (including rounding up)
289
- # or logical size
290
if args.inodes:
291
- size = raw
+ size = raw # 1
292
else:
+ # number of blocks used by this directory (including rounding up)
+ # or logical size
293
if not args.apparent_size:
294
raw *= 512
295
size = (raw // block_size) + ((raw % block_size) != 0) # round up
0 commit comments