Sponsored Content
Operating Systems AIX Unable to save my configurationsettings Post 302253165 by bakunin on Friday 31st of October 2008 05:40:53 AM
Old 10-31-2008
Quote:
Originally Posted by nivaspIND
EDITOR=emacs # This is my fave editor
Hmm..., do NOT CONFUSE "EDITOR=" and "set -o", they are serving different purposes. If you want emacs-style commandline editing (for instance, "CTRL-P" for the previous command, "CTRL-N" for the next command, etc.) replace this line with "set -o emacs" or at least add this line to the file.

I suggest you read the man page about ksh or a good book about ksh to find out more about the many configuration options this shell has. One book i can recommend wholeheartedly is "The ksh Programming Tutorial" by Barry Rosenberg.

Quote:
alias c='clear'
Not sure, what you want to achieve here, but if you want a command to clear the screen use "tput clear". That "clear" works is by chance and it might not be this way on the next machine, but "tput clear" will works always. You might consider changing the line to "alias c='tput clear'".

Quote:
alias x='exit'
You do not have to type "exit" to leave the shell. A simple "CTRL-D" (which is a EOF character, actually) will also get you out of the shell.

To understand this consider the following: an interactive shell session is quite the same as a shell executing a script. The interactive shell is just "reading" your terminal as input file. If you present an EOF character you tell the shell that this "input file" is finished her - so the shell will stop and exit.

You can prevent this behavior (and this is sometimes done out of a false sense of security, because it adds nothing to the security of a system) by setting "set -o ignoreeof", which will cause the shell to ignore this EOF character. If your system is configured this way you can change the setting by "set +o ignoreeof".

Quote:
when I type
$ oslevel -r command - I get the result but with the screen cleared
but when I use with sudo , I have no issues
$ sudo oslevel -r ....... i get the result at the next line......
Issue the "alias" command to list all aliases in effect. maybe the oslevel command is not what it should be.

Alternatively use "which oslevel" to find out if there is some script named oslevel before the binary in the path. The "$PATH" variable is searched consecutively and if it looks like "/usr/local/bin:/usr/bin:..." and in /usr/local/bin is an executable file named the same way as one in /usr/bin you would use the one from /usr/local/bin and not from /usr/bin. The "which" command tells you which one it will load effectively.

If something like this is the case either "unalias" the offending alias or Reaarrange the $PATH variable. by simply setting it anew: "PATH=/first/dir:/second/dir:....". You could put this also in your .kshrc.

I hope this helps.

bakunin
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

save me!

Hi! can anyone tell me how to save a file from command line? Any help appreciated. (2 Replies)
Discussion started by: hufs375
2 Replies

2. Programming

cannot save file...

Hello! I have a problem: I compile some function, which must save file: ===================== // prog.cpp void save_file(){ FILE *fs = fopen("file.txt", "w"); if(!fs) cerr<< "cannot save"; fprintf(fs, "This is a text file."); fclose(fs) } ===================== If i compile it from... (8 Replies)
Discussion started by: szzz
8 Replies

3. UNIX for Dummies Questions & Answers

how to save files?

i just typed out a letter but want to hang on to it i typed it out in vi and was wondering how to save and exit from it? also how do you S&E from emacs since those are the two editors i mainly use any help would be appreciated (2 Replies)
Discussion started by: hiei
2 Replies

4. Shell Programming and Scripting

save

hi i would like someone to assist me to find out how i can Write a script called save which copies a file into a special directory, and another called recover which copies a file back out of the special directory. The user of the script should not be aware of the location of the special directory... (2 Replies)
Discussion started by: swainaina
2 Replies

5. UNIX for Dummies Questions & Answers

can't save crontab with vi

I edit crontab with vi editor, i delete the lines i wanted, but i can't save! i tried the :w, :wq, ZZ commands and it seems like vi is unfamiliar with it. any suggestions? (3 Replies)
Discussion started by: idan_cn
3 Replies

6. UNIX for Advanced & Expert Users

Can't save a file

There is a file A.lcf. I am updating the file and saving it . But as soon as I am logging off and then logging in I am finding that the updated changes are not there in the file. (5 Replies)
Discussion started by: suchismitasuchi
5 Replies

7. Shell Programming and Scripting

Save cURL verbose output to file or do it like browser "save as.."

hi there ! i have exactly the same problem like this guy here https://www.unix.com/shell-programming-scripting/127668-getting-curl-output-verbose-file.html i am not able to save the curl verbose output.. the sollution in this thread (redirecting stderr to a file) does not work for me.... (0 Replies)
Discussion started by: crabmeat
0 Replies

8. UNIX for Dummies Questions & Answers

how to save changes to a file

is i want to sort or delete lines etc etc to a file, how do i save the changes. example i do sort file > file when i do cat file, all data is erased. thanks. (2 Replies)
Discussion started by: hobiwhenuknowme
2 Replies

9. Shell Programming and Scripting

Save value from output of Corestat and save in a list for each core

I am trying to modify the "corestat v1.1" code which is in Perl.The typical output of this code is below: Core Utilization CoreId %Usr %Sys %Total ------ ----- ----- ------ 5 4.91 0.01 4.92 6 0.06 ... (0 Replies)
Discussion started by: Zam_1234
0 Replies
NM-CONNECTION-EDITOR(1) 				      General Commands Manual					   NM-CONNECTION-EDITOR(1)

NAME
nm-connection-editor - network connection editor for NetworkManager SYNOPSIS
nm-connection-editor [ OPTIONS ] DESCRIPTION
nm-connection-editor is a GTK-based application to add, remove, and modify network connections stored by NetworkManager. NetworkManager must be running for any network connections to be added, removed, or modified. OPTIONS
-t, --type=<type> Type of connection to create or show. Values are NetworkManager setting names, eg "802-3-ethernet", "802-11-wireless", "bridge", "bond", "wimax", "infiniband", "vlan", etc. Does nothing if --create or --show is not given. -s, --show Expand or collapse the network list to highlight the network connection type given by --type. -c, --create Create a new connection of the type given by --type and allow the user to modify connection details. -e, --edit=<uuid> Show the network connection edit window for the connection of the given UUID. SEE ALSO
nmcli(1), NetworkManager(8), nm-applet(1). 15 February 2013 NM-CONNECTION-EDITOR(1)
All times are GMT -4. The time now is 03:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy