Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to create a sh script for moving all files in a directory to another but creating symbolic links to all the files..

#pseudocode
mv /dir/*.* /dir2/
ls -s ...
share|improve this question
create the symlinks where? mv can do do bulk stuff, but ln is a single file operation, you'd need to use a loop. – Marc B Oct 3 '12 at 4:02
create the symlinks in the original dir – user1687626 Oct 3 '12 at 4:03
is dir2 empty? – Jon Lin Oct 3 '12 at 4:05
yes, dir2 is empty, and i wont to link all files in dir2 to dir1 – user1687626 Oct 3 '12 at 4:07

closed as not a real question by Marc B, Ben D, Tichodroma, Zirak, Jeffrey Blake Oct 3 '12 at 17:52

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

here's a little bash-script that will move all files recursively from dir1 to dir2, and link back, while keeping the directory structure. it does some rudimentary checks but too much :-)

#!/bin/sh

INDIR=$1
OUTDIR=$2

fail() {
  echo "$@" 1>&2
  exit 1
}

test -d "${INDIR}" || fail "usage: $0 <indir> <outdir>"
test "x${OUTDIR}" != "x" || fail "usage: $0 <indri> <outdir>"

mkdir -p "${OUTDIR}" || fail "couldn't create ${OUTDIR}"

OUTDIR=$(readlink -f "${OUTDIR}")

find "${INDIR}" -type f | while read oldfile
do
  newfile=${OUTDIR}/${oldfile#${INDIR}}
  newpath=${newfile%/*}
  mkdir -p "${newpath}"
  mv "${oldfile}"  "${newfile}"
  ln -s "${newfile}" "${oldfile}"
done

btw, with this script it is not necessary that the target directory is empty.

share|improve this answer

If dir2 is empty, you can move everything there, then generate the symlinks afterwards using find.

Try:

cd dir
mv * ../dir2/
find ../dir2/ -type f -exec ln -s {} \;
share|improve this answer
that find will create symlinks in dir1 to all files in dir2 ? – user1687626 Oct 3 '12 at 4:10
@user1687626 yes. You just need to be in dir1 before running the find. – Jon Lin Oct 3 '12 at 4:11
if dir2 is not empty, zou have to script it. pseudoscript:for i in ls $dir1 do mv $dir1/$i $dir2; ln -s $dir2/$i $dir1/$i; done you have to fiddle around with the script till it works ;-) – romedius Oct 3 '12 at 4:24

Not the answer you're looking for? Browse other questions tagged or ask your own question.