Skip to content

Instantly share code, notes, and snippets.

@sho-t
Created May 25, 2018 03:57
Show Gist options
  • Save sho-t/d4c9bbefdce31af029a3506b2655f71c to your computer and use it in GitHub Desktop.
Save sho-t/d4c9bbefdce31af029a3506b2655f71c to your computer and use it in GitHub Desktop.
ファイル存在チェックでワイルドカード使いたい
#!/bin/bash
files="/temp/hoge*.txt"
[ -z "$(ls $files 2>/dev/null)" ] && exit 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment