Sponsored Content
Full Discussion: Vi doesnt work
Operating Systems AIX Vi doesnt work Post 302557016 by muzahed on Tuesday 20th of September 2011 09:56:51 AM
Old 09-20-2011
Vi doesnt work

Hi Guys,

I have a strange problem.( AIX 6.1) "vi" is not working at all..Whenever i #vi <anythin> ,, it returns the prompt back. Any clues folks??
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

why doesnt my script work!!!

Is there a utility or command I can use to tell the number of decimal places a number has. For instance, if the number is 432, it will give hundred as the number of decimal places. (7 Replies)
Discussion started by: Heedunk
7 Replies

2. UNIX for Dummies Questions & Answers

cd.. doesnt work

hi when i want to go to previous directory by typing cd.. i get the following message $ cd.. ksh: cd..: not found Please help rintingtong (2 Replies)
Discussion started by: rintingtong
2 Replies

3. HP-UX

ls command doesnt work

Good Day I mistakely renamed the dld.sl file in the /usr/lib directory. When i try to ls/ftp into the box i get this error :eek: crt0: ERROR couldn't open /usr/lib/dld.sl errno:000000002 I have tried to rename it back from the renamed file to the original file name, but it gives me the... (2 Replies)
Discussion started by: shawnbishop
2 Replies

4. UNIX for Dummies Questions & Answers

cp doesnt work - Help

When trying to copy a file in Solaris 8 it doesnt copy file or give a error. This worked 100% until the 29th. I've checked the rights and everything seems fine: drwxrwxrwx 2 bmuser bmgroup 11776 Jan 3 10:32 spool This is the file I want to copy: -rwxrwxrwx 1 bmuser bmgroup ... (26 Replies)
Discussion started by: rudi.okelly
26 Replies

5. Red Hat

ldapsearch doesnt work.

Hii All, I am using openldap v2.3 on redhat El-4. When i run ldapsearch it returns all the entries. The command runs successfully. But when I run the ldapsearch with following filter option it doesnt work and immediately returns to the shell. ldapsearch uidNumber>=2000 I've started slapd... (0 Replies)
Discussion started by: shamik
0 Replies

6. AIX

Crontab file doesnt seem to work

Hi all. Could anyone explain me why this simple cron job doesnt work: % whoami system % crontab -l * * * * * /usr/bin/touch /home/system/foo (3 Replies)
Discussion started by: bsddaemon
3 Replies

7. Shell Programming and Scripting

loop doesnt work

It just does the break...even though the files are not the same... # Compare extracts #========================================== count=0 while (( count < 5 )) do (( count+=1 )) echo "Try $count" file1=$(ls -l /tmp/psjava.xml|... (5 Replies)
Discussion started by: sigh2010
5 Replies

8. Shell Programming and Scripting

compiler doesnt work

this is my file I have written. // My first C++ program #include <iostream> int main() { std::cout << "Hi there!" << std::endl"; std::cout << "This is my first C++ program" << std::endl"; return(0); } This is the error I get, why? $ g++ first.cpp ksh: g++: not found (1 Reply)
Discussion started by: gustave
1 Replies

9. UNIX for Dummies Questions & Answers

why doesnt it work?

I am trying to print out two fields in a file using awk. So, I have got awk -F '\t' 'NF = 2 {print $1 $2 "]"}' two.txt in a script called what.awk When i run this version like this - ./what.awk then it runs however I want to run the program like this awk -f what.awk two.txt. When I... (8 Replies)
Discussion started by: The undertaker
8 Replies

10. Red Hat

Beginner : sftp doesnt work

Hello, I really appreciate any help on this. Have to connect to external server via sftp. Our server is Linux machine Linux our.server.com 3.10.0-514.26.2.el7.x86_64 #1 SMP Tue Jul 4 15:04:05 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux I generated the keys, put them in /root/.ssh, sent... (3 Replies)
Discussion started by: billy5
3 Replies
GIT-CLEAN(1)							    Git Manual							      GIT-CLEAN(1)

NAME
       git-clean - Remove untracked files from the working tree

SYNOPSIS
       git clean [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] <path>...

DESCRIPTION
       Cleans the working tree by recursively removing files that are not under version control, starting from the current directory.

       Normally, only files unknown to Git are removed, but if the -x option is specified, ignored files are also removed. This can, for example,
       be useful to remove all build products.

       If any optional <path>... arguments are given, only those paths are affected.

OPTIONS
       -d
	   Remove untracked directories in addition to untracked files. If an untracked directory is managed by a different Git repository, it is
	   not removed by default. Use -f option twice if you really want to remove such a directory.

       -f, --force
	   If the Git configuration variable clean.requireForce is not set to false, git clean will refuse to delete files or directories unless
	   given -f, -n or -i. Git will refuse to delete directories with .git sub directory or file unless a second -f is given.

       -i, --interactive
	   Show what would be done and clean files interactively. See "Interactive mode" for details.

       -n, --dry-run
	   Don't actually remove anything, just show what would be done.

       -q, --quiet
	   Be quiet, only report errors, but not the files that are successfully removed.

       -e <pattern>, --exclude=<pattern>
	   In addition to those found in .gitignore (per directory) and $GIT_DIR/info/exclude, also consider these patterns to be in the set of
	   the ignore rules in effect.

       -x
	   Don't use the standard ignore rules read from .gitignore (per directory) and $GIT_DIR/info/exclude, but do still use the ignore rules
	   given with -e options. This allows removing all untracked files, including build products. This can be used (possibly in conjunction
	   with git reset) to create a pristine working directory to test a clean build.

       -X
	   Remove only files ignored by Git. This may be useful to rebuild everything from scratch, but keep manually created files.

INTERACTIVE MODE
       When the command enters the interactive mode, it shows the files and directories to be cleaned, and goes into its interactive command loop.

       The command loop shows the list of subcommands available, and gives a prompt "What now> ". In general, when the prompt ends with a single
       >, you can pick only one of the choices given and type return, like this:

	       *** Commands ***
		   1: clean		   2: filter by pattern    3: select by numbers
		   4: ask each		   5: quit		   6: help
	       What now> 1

       You also could say c or clean above as long as the choice is unique.

       The main command loop has 6 subcommands.

       clean
	   Start cleaning files and directories, and then quit.

       filter by pattern
	   This shows the files and directories to be deleted and issues an "Input ignore patterns>>" prompt. You can input space-separated
	   patterns to exclude files and directories from deletion. E.g. "*.c *.h" will excludes files end with ".c" and ".h" from deletion. When
	   you are satisfied with the filtered result, press ENTER (empty) back to the main menu.

       select by numbers
	   This shows the files and directories to be deleted and issues an "Select items to delete>>" prompt. When the prompt ends with double >>
	   like this, you can make more than one selection, concatenated with whitespace or comma. Also you can say ranges. E.g. "2-5 7,9" to
	   choose 2,3,4,5,7,9 from the list. If the second number in a range is omitted, all remaining items are selected. E.g. "7-" to choose
	   7,8,9 from the list. You can say * to choose everything. Also when you are satisfied with the filtered result, press ENTER (empty) back
	   to the main menu.

       ask each
	   This will start to clean, and you must confirm one by one in order to delete items. Please note that this action is not as efficient as
	   the above two actions.

       quit
	   This lets you quit without do cleaning.

       help
	   Show brief usage of interactive git-clean.

SEE ALSO
       gitignore(5)

GIT
       Part of the git(1) suite

Git 2.17.1							    10/05/2018							      GIT-CLEAN(1)
All times are GMT -4. The time now is 04:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy