Tagged Questions
6
votes
3answers
399 views
Difference between commands in bash script and commands in terminal
Are there any differences between commands that you type into the terminal and commands you include in a script?
3
votes
2answers
369 views
is there any command like “wall” that runs a “command” in all terminals
as you know "wall" command sends a message to all terminals:
wall message
now my question is this: is there any command that can send a "command" to be run in all terminals?
for example sending ...
2
votes
2answers
433 views
Ignoring files that find cannnot search or open?
I searched for big files using this command on HP Unix:
find . -type f -size +100000000c -exec ls -lrt {} \;
The result came out somthing like this:
-rw-rw-rw- 1 qa1wrk32 test 169263642 ...