10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
For example, if i do ls
I want to have a string like "<br> file1 ....... <br>file2 ..... <br>file3 ....."
i think i ve to use xargs, but i can't find the solution.
Thanks (3 Replies)
Discussion started by: cterra
3 Replies
2. Shell Programming and Scripting
Hi guys,
I am trying to install a software which is a shell script. I am using expect to do the silent installation.
There is a strange line during the installation of the software like this below. The prompt goes to the next line.
ENTER AN ABSOLUTE PATH, OR PRESS <ENTER> TO ACCEPT THE... (0 Replies)
Discussion started by: kapkap
0 Replies
3. Solaris
Hi,
on sunfire v890 unable to move from rsc prompt to ok prompt, i have executed the command break. (9 Replies)
Discussion started by: manoj.solaris
9 Replies
4. Shell Programming and Scripting
I'm attempting to set up a two-line prompt using Korn.
This is what I've set up in .kshrc
PS1='$(print -n "`logname`@`hostname`:";if ] then; print -n "~${PWD#$HOME}"; else; print -n "$PWD";fi;print "\n$ ")'
And in .profile,
ENV="$HOME/.kshrc"; export ENV
The hosts that in use are... (10 Replies)
Discussion started by: capnpepper
10 Replies
5. Shell Programming and Scripting
I have a script built that takes the standard inputs $1 $2 $3 after the name and parses some data.
hexsite=`echo "obase=16;$1"|bc`
hexfix=$(printf "%.3X" 0x$hexsite)
if || ;then
type=33
elif || ;then
type=59
elif ;then
type=99
else type=00
fi
cat /directory/*.2012$3*|
I am... (8 Replies)
Discussion started by: PCGameGuy
8 Replies
6. UNIX Desktop Questions & Answers
Hello guys...
I am having a doubt. Please try to rectify it. I would really appreciate it.
The thing is that is it possible to open any website say for example,google from the command line prompt(terminal) if you are working in Linux-fedora...
I am very new to Unix.
regards,
Mahesh... (2 Replies)
Discussion started by: mraghunandanan
2 Replies
7. Shell Programming and Scripting
Hi Friends,
I am using HP-UNIX(ksh). I want to print a message at specific line on the prompt screen. For Example:
for num in 1 10 3 145
do
echo $num // need to print this on the same line for each number
sleep 2
done
Actual Output:
==========
1
10
3
145
Expected Output:... (5 Replies)
Discussion started by: Niroj
5 Replies
8. Shell Programming and Scripting
Hi
I have some trouble entering if-then condition in a single line on a command prompt in csh.
Could someone show how does one do that ?
eg:
source .cshrc;
cd $dir;
pwd;
test -d $backup_dir;
if
then
mkdir -p ${backup_dir};
echo inside loop;
fi;
echo outside loop;
mv -f... (3 Replies)
Discussion started by: mpc8250
3 Replies
9. UNIX for Dummies Questions & Answers
Can anyone tell me what makes the current path appear in the prompt ?
thx (4 Replies)
Discussion started by: Leitwolf
4 Replies
10. UNIX for Dummies Questions & Answers
I know this is very easy. I just am having a problem determining how to do it.
I want to have a 2-line command prompt when you hit return. I have no problem creating or exporting a PS1, but can't make into 2 lines.
hostname-user:/path/to/dir
#
I really should know this, but my brain... (7 Replies)
Discussion started by: Kelam_Magnus
7 Replies
SNMPTEST(1) Net-SNMP SNMPTEST(1)
NAME
snmptest - communicates with a network entity using SNMP requests
SYNOPSIS
snmptest [COMMON OPTIONS]
DESCRIPTION
snmptest is a flexible SNMP application that can monitor and manage information on a network entity.
After invoking the program, a command line interpreter proceeds to accept commands. It will prompt with:
Variable:
At this point you can enter one or more variable names, one per line. A blank line is a command to send a request for each of the vari-
ables (in a single packet) to the remote entity. Each variable name is given in the format specified in variables(5). For example:
snmptest -c public -v 1 zeus
Variable: system.sysDescr.0
Variable:
will return some information about the request and reply packets, as well as the information:
requestid 0x5992478A errstat 0x0 errindex 0x0
system.sysDescr.0 = STRING: "Unix 4.3BSD"
Upon startup, the program defaults to sending a GET request packet. This can be changed to a GETNEXT request or a SET request by typing
the commands "$N" or "$S" respectively. Typing "$G" will go back to the GET request mode.
The command "$D" will toggle the dumping of each sent and received packet.
The command "$QP" will toggle a quicker, less verbose output form.
When in the "SET request" mode, more information is requested by the prompt for each variable. The prompt:
Type [i|s|x|d|n|o|t|a]:
requests the type of the variable be entered. Type "i" for an integer, "s" for an octet string in ASCII, "x" for an octet string as hex
bytes separated by whitespace, "d" for an octet string as decimal bytes separated by whitespace, , "a" for an ip address in dotted IP nota-
tion, and "o" for an object identifier. At this point a value will be prompted for:
Value:
If this is an integer value, just type the integer (in decimal). If it is a decimal string, type in white-space separated decimal numbers,
one per byte of the string. Again type a blank line at the prompt for the variable name to send the packet.
At the variable name line, typing "$Q" will quit the program.
OPTIONS
snmptest takes the common options described in the snmpcmd(1) manual page.
SEE ALSO
snmpcmd(1), snmpget(1), snmpset(1), variables(5)
4th Berkeley Distribution 08 Feb 2002 SNMPTEST(1)