需要的脚本是
#!/bin/bash
# Check if there are two arguments
if [ $# -eq 2 ]; then
# Check if the input file actually exists.
if ! [[ -f "$1" ]]; then
echo "The input file $1 does not exist."
exit 1
fi
else
echo "Usage: $0 [inputfile] [outputfile]"
exit 1
fi
# Run the command on the input file
grep -P "^[\s]*[0-9A-Za-z-]+.?[\s]*$" "$1" > "$2"
编辑,脚本已更改为
grep -P "^[\s]*[0-9A-Za-z-]+.?[\s]*$" $*
if [ ! -f "$1" ]; then
echo 'Usage: '
echo
echo './Scriptname inputfile > outputfile'
exit 0
fi
调用不带参数的脚本不会产生任何错误并且是空白的
Usage:
./Scriptname inputfile > outputfile
我有一点代码
grep -P "^[\s]*[0-9A-Za-z-]+.?[\s]*$" $*
此代码提取包含单个单词的行并将输出泵送到一个新文件,例如
This is a multi word line this the above line is not now once again wrong
输出将是
This
now
代码有效,用户调用代码使用./scriptname file > newfile
但是,如果用户错误地调用脚本,我正在尝试扩展代码以向用户提供错误消息。
对于错误消息,我正在考虑回显类似scriptname file_to_process > output_file
.
我确实尝试过
if [incorrectly invoted unsure what to type]
echo $usage
exit 1
Usage="usage [inputfile] [>] [outputfile]
然而,我的运气并不好。如果我只使用脚本名称调用,代码会运行但什么也不做。此外,如果我只使用脚本名和输入文件调用脚本,它将输出结果而不是退出并显示错误消息。
我试过的其他的是
if [ ! -n $1 ]; then
echo 'Usage: '
echo
echo './Scriptname inputfile > outputfile'
exit 0
fi
鉴于我到目前为止收到的回复,我现在的代码是
#!/bin/bash
grep -P "^[\s]*[0-9A-Za-z-]+.?[\s]*$" $*
if [ ! -f "$1" ]; then
echo 'Usage: '
echo
echo './Scriptname inputfile > outputfile'
exit 0
fi
在没有输入文件的情况下调用脚本时,脚本什么都不做,必须用 ctrl+c 中止,仍然试图获得调用消息的回显。