Skip to content

Instantly share code, notes, and snippets.

@lazar-mitrovic
Created November 3, 2022 14:45
Show Gist options
  • Save lazar-mitrovic/b2dc570f22c91d138f6f8163558f695a to your computer and use it in GitHub Desktop.
Save lazar-mitrovic/b2dc570f22c91d138f6f8163558f695a to your computer and use it in GitHub Desktop.
Symlink first level of a directory
function symcp {
SRC=$1
DST=$2
mkdir -p "$DST"
for f in $(ls "$SRC"); do
echo "Symlinking $SRC/$f -> $DST/$f ...";
ln -sfn "$SRC/$f" "$DST/$f"
done;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment