Remove commented out code.
[geeqie.git] / plugins / symlink / geeqie-symlink
1 #!/bin/sh
2
3 # This is a helper script that symlinks grouped files
4 # it uses geeqie remote connection to get details about grouped files
5
6
7 # iterate over files on commandline
8 for file in "$@" ; do
9     # we got only one file for each group, typically the main one
10     # get the sidecars:
11     geeqie -r --get-sidecars:"$file" |while read sidecar ; do
12         # the main file is included in the sidecar file list, no special handling is required
13         # get destination path for each sidecar file:
14         geeqie -r --get-destination:"$sidecar" | if read destination ; then
15             ln -s "$sidecar" "$destination"
16         fi
17     done
18 done