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.
我想在 tcsh 中打印整个数组,因为我想将它通过管道传输到 uniq,有没有办法在 tcsh 中做到这一点。
我有set array
set array
并打印它:
echo "$array"
但最终出现错误:字太长,它适用于较小的数组,
有什么简单的方法吗?
这个问题的通常解决方案是使用文件而不是变量:
cat > file <<EOF YOUR ARRAY TEXT HERE..... EOF uniq file