终端如果命令

时间:2015-12-09 18:05:14

标签: shell if-statement terminal command

我有以下问题:我有以下代码可以扫描并计算wifis的数量:

airport en1 -s |awk 'END{print NR--}'

现在我想在某些情况下使用make terminal打开音频文件示例:

if x >10
  then open 1.mp3
else open 2.mp3

我该怎么做?

1 个答案:

答案 0 :(得分:2)

阅读simple bash tutorial怎么样?

if [ $(airport en1 -s | awk 'END{print NR--}') -gt 13 ]; then
   open 1.mp3
else
   open 2.mp3
fi

在OSX中有open命令,在Linux中你可以使用xdg-open