The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Special Forums > UNIX Desktop for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 03-13-2008
benlutgens benlutgens is offline
Registered User
 

Join Date: Nov 2007
Posts: 9
try using a pipe?

try
Code:
cat sometextfile | wall
also you wouldn't want to "quote" the path when you're using shell redirect.
so
Code:
wall < "/path/to/file"
would cause that to be a literal string.

Code:
wall < /path/to/file/
should work fine.
Reply With Quote