save_config_dotfiles/save_config_file

31 lines
603 B
Text
Raw Normal View History

2024-08-03 17:04:51 +02:00
#!/bin/sh
cd "$( dirname "$( readlink -f "$0" )" )" || exit
CONFIG_PATH="./config"
. ./config/*.conf
echo "$_FILE_TO_COPY"
echo "$_DOTFILES"
while VAR= read -r line;
do
2024-08-03 17:15:10 +02:00
order="$(echo $line | cut -d ' ' -f 1)"
file_on_computer="$(echo $line | cut -d ' ' -f 2)"
file_on_dotfile="$(echo $line | cut -d ' ' -f 3)"
if [ "$order" = "d" ]
then
echo ".. d detected .."
elif [ "$order" = "f" ]
then
echo ".. f detected .."
else
echo "Err, $order uknown"
fi
echo " .. $order $file_on_computer $file_on_dotfile.. ";
2024-08-03 17:04:51 +02:00
done <<< "$_FILE_TO_COPY"