我正在尝试做一个bash脚本,它只给我“n”命令的第一行。
示例:
$ sh ./start.sh ls wazup top
ls - list directory contents
wazup - manpage does not exist
top - display Linux tasks
这是我目前的代码:
! bin/bash/
while [ -n "$1" ]
do
which $1> /dev/null
man $1 | head -6 | tail -1
if [ $? = 0 ]
then
echo "manpage does not exist"
fi
shift
done
我的输出是:
ls - list directory contents
manpage does not exist
No manual entry for wazzup
manpage does not exist
top - display Linux processes
manpage does not exist
答案 0 :(得分:2)
检查man
返回的状态代码,而不是通过head
和tail
传输的状态代码(这将是错误的,因为它将是tail
的返回状态)
答案 1 :(得分:1)
非常感谢Alex!
在你的帮助下不使用管道解决了这个问题! :)
这是我需要它的人的最终代码:
#!/bin/bash
while [ -n "$1" ]
do
which $1> /dev/null
if [ $? = 0 ]
then
man -f $1
else
echo "$1: manpage does not exist"
fi
shift
done