Echoing command results


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Echoing command results
# 15  
Old 10-25-2012
I'm not sure that statement is correct, I wrote a small script:-

Code:
cat hist.sh

#!/bin/ksh

FN=$(echo "`history | tail -2 | head -1 |  grep -v history`"); echo $FN

Ran it and got the result:-

Code:
./hist.sh
1092 cat hist.sh

# 16  
Old 10-25-2012
Quote:
Originally Posted by msabhi
The reason you aren't getting any o/p from history command(though used properly) is, "history" is disabled when used inside the shell scripts...

---------- Post updated at 04:17 PM ---------- Previous update was at 04:11 PM ----------

Code:
HISTFILE=~/.bash_history
set -o history
echo `history 2 | grep -v history | awk '{print $3}'`

Include as above...This should work...

I tried that as shown:
Code:
HISTFILE=~/.bash_history
set -o history
echo `history 2 | grep -v history | awk '{print $3}'`

and got:
Code:
> cat ios.cfg | ConfProc.sh


You have ended the program
Good bye

>

# 17  
Old 10-25-2012
I guess that limited to only bash...
History command inside bash script - Unix and Linux

Quote:
Originally Posted by bipinajith
I'm not sure that statement is correct, I wrote a small script:-

Code:
cat hist.sh

#!/bin/ksh

FN=$(echo "`history | tail -2 | head -1 |  grep -v history`"); echo $FN

Ran it and got the result:-

Code:
./hist.sh
1092 cat hist.sh

This User Gave Thanks to msabhi For This Post:
# 18  
Old 10-25-2012
Quote:
Originally Posted by bipinajith
I'm not sure that statement is correct, I wrote a small script:-

Code:
cat hist.sh

#!/bin/ksh

FN=$(echo "`history | tail -2 | head -1 |  grep -v history`"); echo $FN

Ran it and got the result:-

Code:
./hist.sh
1092 cat hist.sh

when I run on the command line:
Code:
> history 2 | grep -v history | awk '{ print $3 }'

I get:
Code:
> history 2 | grep -v history | awk '{ print $3 }'
ios.cfg
>

---------- Post updated at 03:28 PM ---------- Previous update was at 03:26 PM ----------

I even tried adding your function to the script and got nothing from the echo
# 19  
Old 10-25-2012
Hey Marc, am sorry for delaying your results..but am also new to this..apologies for that...can i know which shell you are using?
and can you try using bash in your script and see if that helps(if not included previously)
Code:
#!/bin/bash

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Find with rm command gives strange results

I want to remove any files that are older than 2 days from a directory. It deletes those files. Then it comes back with a message it is a directory. What am I doing wrong here? + find /mydir -mtime +2 -exec rm -f '{}' ';' rm: /mydir is a directory (2 Replies)
Discussion started by: jtamminen
2 Replies

2. Shell Programming and Scripting

Cannot get results from grep command

Hi, i have a file hello.log which as several line that look like the below 2015-12-07 09:46:56 0:339 120.111.12.12 POST /helloWorld 2015-12-07 09:46:57 0:439 122.111.12.12 POST /helloWorld .... when i grep expecting to see results like the below. ... (6 Replies)
Discussion started by: mohtashims
6 Replies

3. Shell Programming and Scripting

echoing complex awk command into file fails

Using hp-ux's shell, I'm trying to echo a complex awk command into a script file for later use. But it fails on a newline character and splits the rest of the command onto the next line. echo ' printf("%s: TOTAL = %18.0lf\n", FILENAME, TOTAL) >> "TOTAL.TXT";' >>awk.script Looks... (3 Replies)
Discussion started by: Scottie1954
3 Replies

4. Shell Programming and Scripting

echoing date command into file

I want to echo into file1 echo & date commands, which in turn will be echoed into file2 string and the current date. So when I'll run file1 it will echo into file2 the commands 'echo' & 'date' My problem is that the date command turns into the actual date value. Example:... (2 Replies)
Discussion started by: liav
2 Replies

5. UNIX for Dummies Questions & Answers

Acting on results from a grep command

Hi, I am currently reading a tar file and searching for a particular word using grep e.g. Plane. At the moment, if a sentence is found with the word "Plane" the sentence itself is piped to another file. Here is the code i am using; for jar in 'cat jar_file.tar'; do tar -tvf... (3 Replies)
Discussion started by: crunchie
3 Replies

6. Shell Programming and Scripting

SSH with and without command gives different results

works as expected $ ssh 172.24.40.100 Last login: Mon Jan 1 06:07:24 2001 from 172.24.41.78 # /path/script.sh gives me error consistent with env setup $ ssh 172.24.40.100 /path/script.sh Which implies the latter is running the script.sh on host a, when I want to 'launch' in from a, and... (3 Replies)
Discussion started by: IanVaughan
3 Replies

7. UNIX for Dummies Questions & Answers

df and du command showing different results

I recently encountered this on the AIX system df command showed usage is 100% i.e 1.5 GB while du command showed usage is only 500MB Why are the 2 commands showing different output This command shows usage is 1.5 GB nlxdsm29:deqadm 24> df -k . /usr/sap/DEQ ... (3 Replies)
Discussion started by: ameya_joshi
3 Replies

8. Shell Programming and Scripting

getting results after using ps command

Hi, I want to use the following ps coomand: ps -ef | grep test Result of this command is: Test 161220 1 0 Oct 04 - 1:11 /test/test Just mentioning the description of each value in the result: UID PID PPID C STIME TTY TIME CMD Test 161220... (11 Replies)
Discussion started by: yale_work
11 Replies

9. Shell Programming and Scripting

joining command results, and substitution

Hello community I'd like to join to command results and put it to the same line in one file, how can I do that? file: a.txt so when I put Date '+%H:%M' and echo date '+%D' in the file appears 14:44 01/05/08 not 14:44 01/05/08 I like to know how can I make a substituion of a whole... (6 Replies)
Discussion started by: ncatdesigner
6 Replies

10. UNIX for Dummies Questions & Answers

Setting the Results of a Command to a Variable

Hi, Hi, I run the command: hostname to get the host back from the server: db201 Now, I need to take that result and set it to a variable. Can anyone help me with this?? I need to be able to use the same script on multiple servers so I do not want to hardcode the hostname result into... (1 Reply)
Discussion started by: stky13
1 Replies
Login or Register to Ask a Question