मैंने एक बैश स्क्रिप्ट लिखी है जो निर्देशिकाओं की एक श्रृंखला बनाता है और चयनित निर्देशिकाओं के लिए एक क्लोन क्लोन करता है।
उसके लिए, मुझे cd
प्रत्येक निर्देशिका ( project 1
और project 2
) की आवश्यकता है, लेकिन स्क्रिप्ट cd
दूसरी निर्देशिका में नहीं है और न ही कमांड निष्पादित करती है।
इसके बजाय, यह निर्देशिका cd
में क्लोनिंग और उसके बाद बंद हो जाता है project2
। यह cd_project1
निम्नलिखित कोड में फ़ंक्शन को क्यों नहीं बुलाता है ?
#!/bin/bash
#Get the current user name
function my_user_name() {
current_user=$USER
echo " Current user is $current_user"
}
#Creating useful directories
function create_useful_directories() {
if [[ ! -d "$scratch" ]]; then
echo "creating relevant directory"
mkdir -p /home/"$current_user"/Downloads/scratch/"$current_user"/project1/project2
else
echo "scratch directory already exists"
:
fi
}
#Going to project2 and cloning
function cd_project2() {
cd /home/"$current_user"/Downloads/scratch/"$current_user"/project1/project2 &&
git clone https://username@bitbucket.org/teamsinspace/documentation-tests.git
exec bash
}
#Going to project1 directory and cloning
function cd_project1() {
cd /home/"$current_user"/Downloads/scratch/"$current_user"/project1/ &&
git clone https://username@bitbucket.org/teamsinspace/documentation-tests.git
exec bash
}
#Running the functions
function main() {
my_user_name
create_useful_directories
cd_project2
cd_project1
}
main
टर्मिनल आउटपुट:
~/Downloads$. ./bash_install_script.sh
Current user is mihi
creating relevant directory
Cloning into 'documentation-tests'...
remote: Counting objects: 125, done.
remote: Compressing objects: 100% (115/115), done.
remote: Total 125 (delta 59), reused 0 (delta 0)
Receiving objects: 100% (125/125), 33.61 KiB | 362.00 KiB/s, done.
Resolving deltas: 100% (59/59), done.
~/Downloads/scratch/mihi/project1/project2$
exec bash
किया है।