shoestrap/recipes/default/bin

7 lines
150 B
Plaintext
Raw Normal View History

2013-08-08 03:23:13 +00:00
#! /bin/bash
# Link all user specific scripts to user bin
for f in "$DEFAULT_ASSETS_PATH"/* ; do
try_link "$f" "$USER_BIN/$(basename "$f")"
2013-08-08 03:23:13 +00:00
done