mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-06 00:06:31 +00:00
8 lines
151 B
Bash
Executable File
8 lines
151 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# Link all user specific scripts to user bin
|
|
for f in "$DEFAULT_ASSETS_PATH"/* ; do
|
|
try_link "$f" "$USER_BIN/$(basename "$f")"
|
|
done
|
|
|