How do I use the output of an ls command in an if statement in a bash shell [duplicate]

北战南征 提交于 2021-02-09 07:09:43

问题


I want to check if only one instance of a file exists before going on to process that file.

I can check how many instances exist using this command:

ls -l $INPUT_DIR/${INPUT_FILE_PREFIX}cons*.csv.gz | wc -l;

However, when I go to use this within an if statement, I am warned that the ls: command not found.

if [ls -l $INPUT_DIR/${INPUT_FILE_PREFIX}cons*.csv.gz | wc -l = '1']
 then
 echo "Only 1 File Exists";
fi

I've tried adding a semicolon at the end of the ls command and enclosing it in square brackets - neither of these yielded any results.

I very rarely have to do any Shell scripting, and I suspect this a very basic error, so any help would be much appreciated.


回答1:


You were almost there:

if [ $(ls $INPUT_DIR/${INPUT_FILE_PREFIX}cons*.csv.gz 2>/dev/null | wc -l) == 1 ]
 then
 echo "Only 1 File Exists";
fi

evaluates the result and compares with double equals. Also, put spaces before and after square brackets.

Also, filter out the case where no file matches (avoids no such file or directory error)

Note: you don't even need the -l option. When outputting to a non-interactive terminal (i.e a file or a pipe), ls issues 1 line per file. You can also force it with -C1 option. You'll gain 3 nanoseconds (at least :)) not performing extra stat calls to get date, size, etc.. which are not needed.




回答2:


Change your if condition as below:

if [ "$(ls -l $INPUT_DIR/${INPUT_FILE_PREFIX}cons*.csv.gz | wc -l)" = "1" ]
  • There need to be a space after [ and before ]
  • Running the command within $() will invoke a subshell and run the command.
  • Placing the $() within double-quotes will avoid error thrown in case of empty output.



回答3:


You will want to do something like this:

if [[ $(ls -l $INPUT_DIR/${INPUT_FILE_PREFIX}cons*.csv.gz | wc -l) == '1' ]]; then
  # Something
fi

The $(command) syntax captures the output. I am not sure if the equal comparison is correct thought, but according to this stackoverflow it is.




回答4:


I hope "-l" option is not needed for checking the presence of files. We can also use command substitution to get the same result.

#!/bin/bash    
if [ `ls -l $INPUT_DIR/${INPUT_FILE_PREFIX}cons*.csv.gz | wc -l` -eq 1 ];then
    echo "One exists"
fi



回答5:


Few subtleties that the previous answers didn't cover:

if [ "$(ls -1d $INPUT_DIR/${INPUT_FILE_PREFIX}cons*.csv.gz 2>/dev/null | wc -l)" -eq 1 ]; then 
  echo 'Only 1 file';
fi

First use -1d (one, dee) will do 2 things: it won't expand directories (if you have a directory name ending in .csv.gz for some odd reason) and will only display 1 entry per line with no (total header) header or other output that is uneeded. Redirecting stderr to /dev/null will prevent the ls: cannot access z*: No such file or directorymessage.

Finally, you should either use = or -eq as == is not compatible with zsh if using the single [ test operator (if you care about bash/zsh compatibility). Also BSD/OSX wc puts some leading space in the output so you might want to pipe to awk to strip out so the comparison can be made.



来源:https://stackoverflow.com/questions/39752210/how-do-i-use-the-output-of-an-ls-command-in-an-if-statement-in-a-bash-shell

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!