Bash 脚本中未找到命令错误

Bash 脚本中未找到命令错误

因此我编写了一个文件来检查克隆项目后bashscript.sh目录是否为空。project1_repo

我已经编写了四个不同的函数来验证它,但每次都会command not found出错。我多次检查是否有syntax error但都是徒劳。有人能帮我吗?谢谢。

编辑:之前由于打字错误project1_install_dir而被调用,colsim1_install_dir但编辑后的版本是正确的。

#!/bin/bash

#path to install project1
function project1_install_dir() {
   while true; 
 do
  read -p "Enter FULL folder path where you want to install project1:" fullpath
  echo "you have enterd $fullpath. Please press 'y' to confirm and 'n' to enter again"
  read -p "Continue? (Y/N): " confirm 
  if [[ $confirm =~ ^([yY][eE][sS]|[yY])$ ]]; then
    break
  else
    continue         
  fi
done
 }

#clone project1
function clone_project1_repo() {
  git clone example git .     
    }

# four functions to Check whether cloning is successful
# function 1
function success_of_cloning_of_project1_repo3() {
  if find $fullpath/project1/project1_repo -mindepth 1 | read; then
     echo "dir not empty"
  else
     echo "dir empty"
  fi
}

# function 2
function success_of_cloning_of_project_repo2() {
DIR="$fullpath/project1/project1_repo"
if [ -n "$(ls -A $DIR)" ]; then
  echo "Take action $DIR is not Empty"
else
  echo "$DIR is Empty"
fi
}

# function 3    
function success_of_cloning_of_project_repo1() {
if [ -d $fullpath/project1/project1_repo ]; then
      [ -n "$(ls -A $fullpath/project1/project1_repo)" ] && echo "Not Empty" || echo "Empty"
else
   :
fi
    }

# function 4
function success_of_cloning_of_project_repo() {
while true;
 do
  if [ -n "$(ls -A $fullpath/project1/project1_repo)" ]; then
    echo "cloning of project1_repo is successful"               
    break
  else
    echo "cloning of project1_repo is NOT successful."
    continue      
  fi                
 done
}

#calling the functions
    function main() {
       project1_install_dir
       success_of_cloning_of_project1_repo3 
       success_of_cloning_of_project1_repo2  
       success_of_cloning_of_project1_repo1
       success_of_cloning_of_project1_repo
    }

    main

终端输出:

jen@ex343:tdk/jen$ source bash_file_test.sh 
Enter FULL folder path where you want to install project1:/tdk/jen

you have enterd /tdk/jen. Please press 'y' to confirm and 'n' to enter again
 Continue? (Y/N): y
 You have chosen yes
-bash: success_of_cloning_of_project1_repo3: command not found
-bash: success_of_cloning_of_project1_repo2: command not found
-bash: success_of_cloning_of_project1_repo1: command not found
-bash: success_of_cloning_of_project1_repo: command not found

答案1

将您的代码粘贴到https://www.shellcheck.net/报告:

$ shellcheck myscript

Line 7:
  read -p "Enter FULL folder path where you want to install project1:" fullpath
  ^-- SC2162: read without -r will mangle backslashes.

Line 9:
  read -p "Continue? (Y/N): " confirm
  ^-- SC2162: read without -r will mangle backslashes.

Line 26:
  if find $fullpath/project1/project1_repo -mindepth 1 | read; then
          ^-- SC2086: Double quote to prevent globbing and word splitting.
                                                         ^-- SC2162: read without -r will mangle backslashes.

Did you mean: (apply this, apply all SC2086)
  if find "$fullpath"/project1/project1_repo -mindepth 1 | read; then

Line 36:
if [ -n "$(ls -A $DIR)" ]; then
                 ^-- SC2086: Double quote to prevent globbing and word splitting.

Did you mean: (apply this, apply all SC2086)
if [ -n "$(ls -A "$DIR")" ]; then

Line 45:
if [ -d $fullpath/project1/project1_repo ]; then
        ^-- SC2086: Double quote to prevent globbing and word splitting.

Did you mean: (apply this, apply all SC2086)
if [ -d "$fullpath"/project1/project1_repo ]; then

Line 46:
      [ -n "$(ls -A $fullpath/project1/project1_repo)" ] && echo "Not Empty" || echo "Empty"
                    ^-- SC2086: Double quote to prevent globbing and word splitting.

Did you mean: (apply this, apply all SC2086)
      [ -n "$(ls -A "$fullpath"/project1/project1_repo)" ] && echo "Not Empty" || echo "Empty"

Line 56:
  if [ -n "$(ls -A $fullpath/project1/project1_repo)" ]; then
                   ^-- SC2086: Double quote to prevent globbing and word splitting.

Did you mean: (apply this, apply all SC2086)
  if [ -n "$(ls -A "$fullpath"/project1/project1_repo)" ]; then

您可以按照建议使用"$fullpath"以及上面评论中的任何其他建议。修复当前错误后 壳牌检测报告,当您再次运行时它可能会报告其他错误。

相关内容