1
1
mirror of https://github.com/chubin/cheat.sh.git synced 2024-11-29 23:36:40 +03:00
cheat.sh/tests/results/2

18 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-08-05 10:37:11 +03:00
# To display everything in <dir>, excluding hidden files:
ls <dir>
2019-05-09 22:53:34 +03:00
2020-08-05 10:37:11 +03:00
# To display everything in <dir>, including hidden files:
ls -a <dir>
2019-05-09 22:53:34 +03:00
2020-08-05 10:37:11 +03:00
# To display all files, along with the size (with unit suffixes) and timestamp
ls -lh <dir>
2019-05-09 22:53:34 +03:00
2020-08-05 10:37:11 +03:00
# To display files, sorted by size:
ls -S <dir>
2019-05-09 22:53:34 +03:00
2020-08-05 10:37:11 +03:00
# To display directories only:
ls -d */ <dir>
2019-05-09 22:53:34 +03:00
2020-08-05 10:37:11 +03:00
# To display directories only, include hidden:
ls -d .*/ */ <dir>