From eb012794028e9f5670feb03718c03ad699e8d935 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Fri, 26 Sep 2008 18:16:31 +0000 Subject: Cleanup of some libs. git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1533 ab2d0c66-481e-0410-8bed-d214d4d58bed --- lib/fs.lua | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'lib/fs.lua') diff --git a/lib/fs.lua b/lib/fs.lua index 943fb85..fa58058 100644 --- a/lib/fs.lua +++ b/lib/fs.lua @@ -95,19 +95,6 @@ function md5sum_file ( path ) return checksum end -function md5sum_string ( str) - cmd = "/bin/echo -n " .. str .. "|/usr/bin/md5sum|cut -f 1 -d \" \" " - f = io.popen(cmd) - local checksum = {} - for line in f:lines() do - checksum[#checksum + 1] = line - end - f:close() - return checksum[1] -end - - - -- iterator function for finding dir entries matching filespec (what) -- starting at where, or currentdir if not specified. -- Finds regexes, not fileglobs -- cgit v1.2.3