parent
ca8ab01a43
commit
e538400018
|
@ -8,9 +8,9 @@ uci_bash_shell_install () {
|
||||||
echo "Detected The UCI BASH Shell install directory: BASH_INSTALL_DIR=$install_dir"
|
echo "Detected The UCI BASH Shell install directory: BASH_INSTALL_DIR=$install_dir"
|
||||||
echo "Detected The UCI BASH Shell base directory: BASH_SHELL_BASE=$BASH_SHELL_BASE"
|
echo "Detected The UCI BASH Shell base directory: BASH_SHELL_BASE=$BASH_SHELL_BASE"
|
||||||
[[ $EUID -ne 0 ]] && usesudo=sudo
|
[[ $EUID -ne 0 ]] && usesudo=sudo
|
||||||
$usesudo $SHELL $install_dir/scripts/copy-etc.sh
|
$usesudo -m $SHELL $install_dir/scripts/copy-etc.sh
|
||||||
$usesudo $SHELL $install_dir/scripts/copy-root.sh
|
$usesudo -m $SHELL $install_dir/scripts/copy-root.sh
|
||||||
[[ $1 ]] && [[ $(id -u $1 2> /dev/null) ]] && $usesudo $SHELL $install_dir/scripts/copy-user.sh "$@"
|
[[ $1 ]] && [[ $(id -u $1 2> /dev/null) ]] && $usesudo -m $SHELL $install_dir/scripts/copy-user.sh "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
# # if script was executed then call the function
|
# # if script was executed then call the function
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
alias gitdis="git clean -df"
|
|
@ -73,10 +73,11 @@ touch $rfse
|
||||||
[[ $delete ]] && rm $rfse
|
[[ $delete ]] && rm $rfse
|
||||||
cat <<EOF > $rfse
|
cat <<EOF > $rfse
|
||||||
.[Tt]rash*
|
.[Tt]rash*
|
||||||
tmp/
|
tmp/*
|
||||||
cache/
|
node_modules
|
||||||
log/
|
[Cc]ache/*
|
||||||
log[s]/
|
logs/*
|
||||||
|
log/*
|
||||||
lost+found
|
lost+found
|
||||||
EOF
|
EOF
|
||||||
if [[ $list ]];then
|
if [[ $list ]];then
|
||||||
|
|
Loading…
Reference in New Issue