mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 13:36:32 +00:00
7 lines
150 B
Bash
Executable File
7 lines
150 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
|