6 lines
88 B
Bash
6 lines
88 B
Bash
alias get_idf 2>/dev/null
|
|
ret=$?
|
|
if [ $ret -eq 1 ]; then
|
|
echo "aliasnant not found"
|
|
fi
|