请教,一个shell程序的编写

发布于 2022-07-19 08:33:02 字数 437 浏览 11 评论 2

Write a shell script (/bin/sh) called 'fileline' which is passed two command line parameters. The first parameter is the
   name of a file and the second is a number 'n'. The script should write the contents of the nth line of the file to a new
   file called 'out'. If the input file does not exist or no such line exists in the file, the script should write an error  message to the terminal

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花开柳相依 2022-07-24 18:44:58

给你个参考:
if [ ! -e ./PI.DAT ]; then
echo "no such file"
fi

晚风撩人 2022-07-22 07:09:04

原帖由 lengxb 于 2006-8-12 21:05 发表
Write a shell script (/bin/sh) called 'fileline' which is passed two command line parameters. The first parameter is the
   name of a file and the second is a number 'n'. The script should write  ...

>>
>>
>>可以察看一些sh例程就可以解决了
>>
>>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文