parent
7cfd0247f0
commit
bd6cb1ce63
1 changed files with 12 additions and 5 deletions
15
cd.sh
15
cd.sh
|
@ -21,7 +21,7 @@ cd_main () {
|
||||||
cd_install_python
|
cd_install_python
|
||||||
cd_clean_packages_cache
|
cd_clean_packages_cache
|
||||||
cd_clone_parent_repositories "${@}"
|
cd_clone_parent_repositories "${@}"
|
||||||
cd_set_python_commands "${@}"
|
cd_execute_python_module "${@}"
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -261,16 +261,23 @@ local root
|
||||||
rm --force --recursive "${root}" || exit
|
rm --force --recursive "${root}" || exit
|
||||||
}
|
}
|
||||||
|
|
||||||
cd_set_python_commands () {
|
cd_execute_python_module () {
|
||||||
|
local self
|
||||||
cd_step "Set Python commands"
|
cd_step "Set Python commands"
|
||||||
"${CD_PYTHON_COMMAND}" -m "${1}"
|
self="$(realpath "${0}")"
|
||||||
|
echo -n "\
|
||||||
|
${self}
|
||||||
|
↓
|
||||||
|
${1}
|
||||||
|
"
|
||||||
|
"${CD_PYTHON_COMMAND}" -m "${1}" "${self}"
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
||||||
cd_cat () {
|
cd_cat () {
|
||||||
if [ -f "${1}" ] ; then
|
if [ -f "${1}" ] ; then
|
||||||
echo "↗$(realpath "${1}")"
|
echo "⋅$(realpath "${1}")"
|
||||||
cat "${1}" || exit
|
cat "${1}" || exit
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue