Yash commited on
Commit
5b841a1
·
verified ·
1 Parent(s): 0d9803d

Delete explore_fs.sh

Browse files
Files changed (1) hide show
  1. explore_fs.sh +0 -20
explore_fs.sh DELETED
@@ -1,20 +0,0 @@
1
- #!/bin/bash
2
-
3
- echo "=== Checking / directory ==="
4
-
5
- if [ -d "/" ]; then
6
- ls -alh /
7
- echo
8
- echo "=== Directory tree of / (up to 3 levels) ==="
9
- if command -v tree >/dev/null 2>&1; then
10
- tree -a -L 3 / 2>/dev/null
11
- else
12
- find / -maxdepth 3 -type d 2>/dev/null
13
- fi
14
-
15
- echo
16
- echo "=== Disk usage of / ==="
17
- du -sh / 2>/dev/null
18
- else
19
- echo "/ not found"
20
- fi