Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我的 bash 脚本中有一部分代码需要帮助,我正在使用以下代码打开文本文件中的链接
while read line; do firefox -new-tab "$line" & 2>/dev/null sleep 15 done < file1
这确实工作得很好,但我想让脚本在每次打开新 URL 时打印一组消息,即(链接已访问)。
还有什么方法可以让我的 bash 脚本始终位于所有窗口之上?
添加消息就像这样简单:
while read line; do firefox -new-tab "$line" & 2>/dev/null echo "Visted $line" sleep 15 done < file1
你没有说你正在使用什么操作系统,但是,给定 bash,我假设是 Linux,所以你通常可以通过右键单击标题栏并从菜单中选择适当的项目来将终端窗口保持在顶部。不过,这确实因桌面环境而异。