Skip to content

Commit b1b1669

Browse files
committed
replace the double spacing with \t to cause the "double spacing" effect ls do when listing files in a dir
1 parent 6551026 commit b1b1669

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • implement-shell-tools/ls

implement-shell-tools/ls/ls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
if args.one:
2828
print(item)
2929
else:
30-
print(item, end=" ")
30+
print(item, end="\t")
3131
if not args.one:
3232
print()
3333
else:

0 commit comments

Comments
 (0)