mirror of
https://github.com/notwa/rc
synced 2025-02-05 07:43:22 -08:00
use $HOME
instead of ~
for hush
in recombine
This commit is contained in:
parent
cf12a27ea6
commit
5296e9831b
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ case "$sh" in
|
||||||
esac
|
esac
|
||||||
|
|
||||||
printf %s\\n '#!/usr/bin/env false' '[ -n "$preload" ] || exit 1' ''
|
printf %s\\n '#!/usr/bin/env false' '[ -n "$preload" ] || exit 1' ''
|
||||||
for f in ~/sh/*; do
|
for f in "${HOME:?}/sh"/*; do
|
||||||
[ -n "${f##*.*}" ] && [ -f "$f" ] || continue
|
[ -n "${f##*.*}" ] && [ -f "$f" ] || continue
|
||||||
i=10 sh=
|
i=10 sh=
|
||||||
while IFS= read -r line; do
|
while IFS= read -r line; do
|
||||||
|
|
Loading…
Add table
Reference in a new issue