diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2011-03-17 05:07:10 +0100 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2011-03-17 05:07:10 +0100 |
commit | 00286a5db286e21a766b6af057052dc5d17561ad (patch) | |
tree | 7232dadf6dc3570705c3104fe0c000f480c7a0ee /backend/modules/common | |
download | acritoxinstaller-00286a5db286e21a766b6af057052dc5d17561ad.zip acritoxinstaller-00286a5db286e21a766b6af057052dc5d17561ad.tar.gz |
Initial commit
Diffstat (limited to 'backend/modules/common')
-rw-r--r-- | backend/modules/common | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/backend/modules/common b/backend/modules/common new file mode 100644 index 0000000..5c763f3 --- /dev/null +++ b/backend/modules/common @@ -0,0 +1,13 @@ +#!/bin/bash + +# Synopsis: dereferce_links_in_list +# +# This function reads a list from STDIN, dereferences the links and prints it to STDOUT +function dereferce_links_in_list() +{ + for lnk in $(cat) + do + readlink -m $lnk + done +} + |