added couple basic aliases

fixed copy arguments bug
added GIT url file to load after done
master
David Kebler 2024-04-19 13:53:10 -07:00
parent 057b8ad9dd
commit a41e477d8f
3 changed files with 23 additions and 17 deletions

View File

@ -65,9 +65,12 @@ alias umountf="sudo umount -l"
alias loginust="loginctl show-user $USER"
# alias to add for live user
if [ -v PS1 ]; then
alias dfind="_find -t d -d 0 -n "
alias sdfind="_find -s -t d -d 0 -n "
fi
fi
alias portl="ss -tunl | grep"
alias ipg="ip addr show | grep -A1 "

View File

@ -19,6 +19,7 @@
# chmod -R +r $rpath
# }
# must! be run as sudo
install_shell_base () {
if [[ $1 == "-f" ]];then
@ -53,6 +54,9 @@ install_shell_base () {
chmod -R +r /shell
/bin/bash /shell/base/install/install.sh ${1:-1000}
# TODO now add BASH_SHELL_GIT_URL=$BASH_SHELL_GIT_URL to load directory
echo "export BASH_SHELL_GIT_URL=$BASH_SHELL_GIT_URL" > $BASH_SHELL_BASE/load/ucishellgiturl
}
# # if script was executed then call the function

View File

@ -12,7 +12,7 @@ copy () {
local SHOST; local DHOST; local sshargs; local args
local SRC; local DEST; local mirror; local quiet; local Mirror
local SPATH; local DPATH; local exec; local list; local verbose
local usesudo;local cmd;local noconfirm;local insert
local usesudo;local cmd;local noconfirm;local insert; local sargs
args=()
@ -172,20 +172,19 @@ EOF
[[ ! $SHOST ]] && SPATH=$(realpath $SPATH)
[[ ! $DHOST ]] && DPATH=$(realpath $DPATH)
# parse ssh arguments from the rest
debug $( ( IFS=$','; echo all arguments: "$*" ) )
for ((d=1; d<$#; ++d)); do
[[ ${!d} == "---" ]] && break
done
if [[ $d -lt $# ]]; then # if there are extra ssh arguments
debug found --- at $d
sshargs=("${@:$d+1:$#}")
debug $( ( IFS=$','; echo "ssh arguments: ${sshargs[*]}" ) )
args+=("${@:1:$d-1}")
debug $( ( IFS=$','; echo remaining arguments to parse: "$*" ) )
else
args+=("${@:1}")
fi
debug $( ( IFS=$','; echo all arguments: "$*" ) )
for ((d=1; d<$#+1; ++d)); do
# echo in loop $d, ${!d}
[[ ${!d} == "--" ]] && sargs=true && break
done
if [[ $sargs ]]; then # if there are extra ssh arguments
sshargs=("${@:$d+1:$#}")
debug $( ( IFS=$','; echo "ssh arguments: ${sshargs[*]}" ) )
args=("${@:1:$d-1}")
debug $( ( IFS=$','; echo remaining arguments to parse: "$*" ) )
else
args=("${@:1}")
fi
[[ $DHOST || $SHOST ]] && args+=( "$(remove_end_spaces "-e '$(ssh -l "${sshargs[*]}")'")")