forked from skx/sysadmin-util
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathempty-dir
More file actions
executable file
·51 lines (44 loc) · 737 Bytes
/
empty-dir
File metadata and controls
executable file
·51 lines (44 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/sh
#
# About
# -----
# Indicate, via exit code, whether the named directory is empty.
#
#
# License
# -------
#
# Copyright (c) 2013 by Steve Kemp. All rights reserved.
#
# This script is free software; you can redistribute it and/or modify it under
# the same terms as Perl itself.
#
# The LICENSE file contains the full text of the license.
#
#
#
# Get the argument
#
dir=$1
#
# Ensure we had an argument
#
if [ -z "$dir" ]; then
echo "Usage: $0 directory"
exit 2;
fi
#
# Test that the argument was a directory.
#
if [ ! -d "$dir" ]; then
echo "$dir is not a directory"
exit 2
fi
#
# Now look for files and report appropriately.
#
if [ -z "$(ls -A "$dir")" ]; then
exit 0
else
exit 1
fi