The UNIX and Linux Forums
>
Special Forums
>
UNIX Desktop for Dummies Questions & Answers
Wall, Write, select users, pipe a text file, HELP Before I'm Bald!
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Rules & FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
Wall, Write, select users, pipe a text file, HELP Before I'm Bald!
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
2
(
permalink
)
03-13-2008
benlutgens
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.
benlutgens
View Public Profile
Find all posts by benlutgens