qsgen2: Add new function _cd_to_site
This commit is contained in:
parent
9557dc1971
commit
227c6ef7fb
36
qsgen2
36
qsgen2
@ -58,9 +58,11 @@ _add_site() {
|
|||||||
echo "The specified project directory does not exist."
|
echo "The specified project directory does not exist."
|
||||||
return 1 # Exit the function with an error status.
|
return 1 # Exit the function with an error status.
|
||||||
fi
|
fi
|
||||||
|
# Determine the new site number by counting existing lines
|
||||||
|
local site_number=$(( $(wc -l < "${sites_file}") + 1 ))
|
||||||
|
|
||||||
# Add the site to the sites file
|
# Add the site to the sites file
|
||||||
echo "${site_name}|${project_dir}" >> "${sites_file}"
|
echo "${site_number}|${site_name}|${project_dir}" >> "${sites_file}"
|
||||||
echo "Site '${site_name}' added successfully."
|
echo "Site '${site_name}' added successfully."
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,6 +85,35 @@ _list_sites() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_cd_to_site() {
|
||||||
|
local site_number="${1}"
|
||||||
|
local sites_file="${HOME}/.config/qsgen2/sites.qsc"
|
||||||
|
|
||||||
|
# Check if sites file exists
|
||||||
|
if [[ ! -f "${sites_file}" ]]; then
|
||||||
|
echo "Sites file not found."
|
||||||
|
return 1 # Exit the function with an error status.
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Get the directory for the site number
|
||||||
|
local project_dir=$(awk -F'|' -v num="${site_number}" '$1 == num {print $3}' "${sites_file}")
|
||||||
|
|
||||||
|
# Check if the directory was found
|
||||||
|
if [[ -z "${project_dir}" ]]; then
|
||||||
|
echo "Site with number ${site_number} not found."
|
||||||
|
return 1 # Exit the function with an error status.
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check if the directory exists
|
||||||
|
if [[ ! -d "${project_dir}" ]]; then
|
||||||
|
echo "The directory for site number ${site_number} does not exist."
|
||||||
|
return 1 # Exit the function with an error status.
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Print the cd command
|
||||||
|
builtin cd ${project_dir}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function _version() {
|
function _version() {
|
||||||
echo "${yellow}- Created by kekePower - 2018-$(date +%Y)${end}"
|
echo "${yellow}- Created by kekePower - 2018-$(date +%Y)${end}"
|
||||||
@ -169,6 +200,9 @@ case "$1" in
|
|||||||
_list_sites
|
_list_sites
|
||||||
exit
|
exit
|
||||||
;;
|
;;
|
||||||
|
cd)
|
||||||
|
_cd_to_site ${2}
|
||||||
|
;;
|
||||||
force)
|
force)
|
||||||
_msg sub "- Forced Update: Generating Everything"
|
_msg sub "- Forced Update: Generating Everything"
|
||||||
: >| "$blog_cache_file" # Truncate the blog cache before doing update
|
: >| "$blog_cache_file" # Truncate the blog cache before doing update
|
||||||
|
Loading…
Reference in New Issue
Block a user