parent
903e203857
commit
58c689a059
1 changed files with 10 additions and 3 deletions
13
cd.sh
13
cd.sh
|
@ -140,7 +140,7 @@ APT::Install-Suggests False;
|
||||||
Dir::Etc::SourceParts \"\";
|
Dir::Etc::SourceParts \"\";
|
||||||
"
|
"
|
||||||
;;
|
;;
|
||||||
"alma") mkdir "/etc/dnf/dnf.conf.d" || exit ;;
|
"alma") cd_mkdir "/etc/dnf/dnf.conf.d" ;;
|
||||||
*) cd_error_os "cd_set_packages_configuration" ;;
|
*) cd_error_os "cd_set_packages_configuration" ;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
@ -288,7 +288,7 @@ ${1}
|
||||||
|
|
||||||
cd_cat () {
|
cd_cat () {
|
||||||
if [ -f "${1}" ] ; then
|
if [ -f "${1}" ] ; then
|
||||||
echo "╭ $(realpath "${1}")"
|
echo " ↙ /etc╭ $(realpath "${1}")"
|
||||||
cat "${1}" || exit
|
cat "${1}" || exit
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
@ -312,9 +312,16 @@ cd_install_package () {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cd_mkdir () {
|
||||||
|
if [ "${1}" ] ; then
|
||||||
|
echo "→ ${1}"
|
||||||
|
mkdir --parents "${1}" || exit
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
cd_rm () {
|
cd_rm () {
|
||||||
if [ -e "${1}" ] ; then
|
if [ -e "${1}" ] ; then
|
||||||
echo "× $(realpath "${1}")"
|
echo "← $(realpath "${1}")"
|
||||||
rm --recursive "${1}" || exit
|
rm --recursive "${1}" || exit
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue