diff options
author | Antonio Terceiro <terceiro@softwarelivre.org> | 2008-08-08 22:20:56 -0300 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2008-08-09 03:27:52 +0200 |
commit | 268c0dd538ba427f7a54cb96f1e1b3fcc83fd6bf (patch) | |
tree | 8eb20256392174b60b945b321c73b10bdc1436d6 /functions | |
parent | a3277ebaaee064a514192595b3b8e0de1b889cb8 (diff) | |
download | vyos-live-build-268c0dd538ba427f7a54cb96f1e1b3fcc83fd6bf.tar.gz vyos-live-build-268c0dd538ba427f7a54cb96f1e1b3fcc83fd6bf.zip |
Replacing file checking with ls by function calls
Instead of repeatedly doing "ls ... > /dev/null 2>&1", just use a
function that does exactly that.
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/aliases.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/functions/aliases.sh b/functions/aliases.sh index c4e029038..15ae2ae58 100755 --- a/functions/aliases.sh +++ b/functions/aliases.sh @@ -17,6 +17,11 @@ Truncate () done } +Find_files () +{ + (ls "${@}" | grep -qs .) > /dev/null 2>&1 +} + In_list () { NEEDLES="${1}" |