Linux Shell執行source或.命令報錯'bash: ..: command not found'
Linux Shell執行source命令報錯
[root@localhost fire]# vi config.ini
VERSION_LEVEL_TABLE = 'version'
SQL_SCRIPT_NAME = 'e'
[root@localhost fire]# . config.ini
bash: VERSION_LEVEL_TABLE: command not found
bash: SQL_SCRIPT_NAME: command not found
[root@localhost fire]# source config.ini
bash: VERSION_LEVEL_TABLE: command not found
bash: SQL_SCRIPT_NAME: command not found
報錯原因:宣告的變數和等號之間有空格
[root@localhost fire]# vi config.ini
VERSION_LEVEL_TABLE='version'
SQL_SCRIPT_NAME='e'
[root@localhost fire]# . config.ini
[root@localhost fire]# echo $VERSION_LEVEL_TABLE $SQL_SCRIPT_NAME
version e
[root@localhost fire]# vi config.ini
VERSION_LEVEL_TABLE = 'version'
SQL_SCRIPT_NAME = 'e'
[root@localhost fire]# . config.ini
bash: VERSION_LEVEL_TABLE: command not found
bash: SQL_SCRIPT_NAME: command not found
[root@localhost fire]# source config.ini
bash: VERSION_LEVEL_TABLE: command not found
bash: SQL_SCRIPT_NAME: command not found
報錯原因:宣告的變數和等號之間有空格
[root@localhost fire]# vi config.ini
VERSION_LEVEL_TABLE='version'
SQL_SCRIPT_NAME='e'
[root@localhost fire]# . config.ini
[root@localhost fire]# echo $VERSION_LEVEL_TABLE $SQL_SCRIPT_NAME
version e
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26506993/viewspace-2124664/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【linux報錯】-bash: xhost: command not foundLinux
- shell指令碼執行錯誤 $‘\r‘:command not found指令碼
- python virtualenv報錯-bash: virtualenv: command not foundPython
- Linux:-bash: tree: command not foundLinux
- Linux:-bash: unzip: command not foundLinux
- -bash: id: command not found -bash: tty: command not found
- Mac之telnet報錯-bash: telnet: command not foundMac
- Mac -bash: mysql: command not foundMacMySql
- 執行shell指令碼報錯:-bash: ./test1.sh: /bin/bash^M: ...指令碼
- ubuntu18 沒有 where 命令 -bash: where: command not foundUbuntu
- centos 7 -bash: mysql: command not foundCentOSMySql
- CentOS 已安裝virtualenv, 但還是報錯誤 bash: virtualenv: command not foundCentOS
- python裡執行shell命令或cmd命令Python
- 解決shell指令碼錯誤$’r’ command not found指令碼
- 修改 Linux 預設 Shell 用 chsh -s /bin/zsh 命令不生效,提示 chsh: Shell not changed. 或 chsh: command not found 怎麼辦Linux
- 詳解shell中source、sh、bash、./執行指令碼的區別指令碼
- [20210618]記錄bash shell執行的命令.txt
- laravel:從linux命令列執行commandLaravelLinux命令列
- bash: lspci: command not found解決方法
- crontab異常:shell下可以執行命令,執行crontab卻報錯
- -bash: XXX: command not found解決辦法
- bash: ssh-copy-id: command not found...
- 解決bash: mysql: command not found的問題MySql
- bash shell多執行緒方案執行緒
- fish:Linux中比bash或zsh更好用的ShellLinux
- shell指令碼linux命令連續執行指令碼Linux
- 執行npm run dev 後報錯 Mix: not foundNPMdev
- AS執行main()方法報錯:SourceSet with name ‘main‘ not foundAI
- 【Linux】git note -v command not foundLinuxGit
- [20210330]bash使用source or ..呼叫shell指令碼注意txt指令碼
- linux下source命令Linux
- MacOS 裡執行 sed 命令報錯Mac
- 執行yarn報錯-node_modules\pngquant-bin: Command failedYarnAI
- 生成 Linux 執行時間報告的 Bash 指令碼Linux指令碼
- shell中的source和直接執行sh的區別
- Linux Bash Shell 指令碼入門(3)——Linux常用命令介紹Linux指令碼
- 【Mongo】shell命令列模式執行mongo命令Go命令列模式
- [20231023]生成bbed的執行指令碼(bash shell).txt指令碼
- 在Linux中,bash shell 中的 hash 命令有什麼作用?Linux