[Solved] What is the meaning of pwd|sed -e?
So first you should know that this is two commands – pwd and sed -e “s#/survey1##” – and these two commands are being run together in a pipeline. That is, the output of the first command is being sent to the second command as input. That is, in general, what | means in unix shell … Read more