Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

go2(1) [debian man page]

GO2(1)																	    GO2(1)

NAME
go2 - directory finder SYNOPSIS
go2 [-h] [--cd] [-i] [-r] [--setup] [--version] [pattern [pattern ...]] DESCRIPTION
This manual page documents briefly the go2 command. This manual page was written for the Debian(TM) distribution because the original program does not have a manual page. go2 is a program that finds (and changes to) directories. IMPORTANT
go2 requires be loaded from the shell. To do this include the next sentence in your $HOME/.bashrc file: [ -e /usr/lib/go2/go2.sh ] && source /usr/lib/go2/go2.sh If your wish improve directory caching, you may include also the next sentence: alias cd='go2 --cd' Both are made by the setup process the first time you invoke go2. OPTIONS
This program follows the usual GNU command line syntax, with long options starting with two dashes ('-'). A summary of options is included below. For a complete description, see the Info files. --cd Just change working directory -i Case insensitive. -r Search from root directory. -d Search in hidden directories. -l List only, print matches and exists. --setup Install go2 in your .bashrc. SEE ALSO
This program is fully documented in http://arco.esi.uclm.es/~david.villa/go2.html COPYRIGHT
Copyright (C) 2011 David Villa This manual page was written for the Debian system (and may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or (at your option) any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. AUTHOR
David.Villa@uclm.es 2011-08-05 GO2(1)

Check Out this Related Man Page

TILED-QT(1)						       tmxviewer User Manual						       TILED-QT(1)

NAME
tmxviewer - program to view tmx files SYNOPSIS
tmxviewer [{-h | --help}] [{-v | --version}] [file] DESCRIPTION
This manual page documents briefly the tmxviewer commands This manual page was written for the Debian distribution because the original program does not have a manual page. tmxviewer is a program that views tmx map file. It pops a window and let you browse the map. OPTIONS
The program follows the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. -h, --help Show summary of options. -v, --version Show version of program. SEE ALSO
tiled(1) AUTHOR
Ying-Chun Liu <paulliu@debian.org> Wrote this manpage for the Debian system. COPYRIGHT
Copyright (C) 2011 Ying-Chun Liu (PaulLiu) This manual page was written for the Debian system (and may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or (at your option) any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-2. tmxviewer 05/16/2012 TILED-QT(1)
Man Page

15 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Ensure the file completion ?

Hi, I would like to copy a file from one location to another. But that particular file is not fully loaded. I like to copy a file once it's fully loaded or complete file. How to ensure whether file is fully loaded or complete file?. -Thambi (5 Replies)
Discussion started by: thambi
5 Replies

2. UNIX for Dummies Questions & Answers

Having trouble with .bashrc

hey guys, Im trying to find all my .bashrc files in the home directory. ~/etc/bash.bashrc is the only thing i can find but its outside of my /home Could the files be hidden? I want to see all my .bashrc files in my /home structure... <cries> (5 Replies)
Discussion started by: oxoxo
5 Replies

3. UNIX for Dummies Questions & Answers

.bashrc question

Hi, I was instructed to find all the .bashrc files on my system, that MODIFY the PS1 varaible. here is what i've come up with so far: ls / .bashrc -print woo. But thats not all. I need to display the full file name ( Including the full path ) and protection. - I can display... (4 Replies)
Discussion started by: oxoxo
4 Replies

4. UNIX for Dummies Questions & Answers

.bashrc revisisted

hey guys, i've tried countless times to do this and have come up with: find / type -f ".bashrc" -exec grep PS1 '{}' \; 2>/dev/null | ls -l which tells bash: find all the files in the system with the name .bashrc and look for modifcations to PS1 and terminate and rediret error msgs... (8 Replies)
Discussion started by: oxoxo
8 Replies

5. Shell Programming and Scripting

.bashrc files modifying the PS1 variable?

Is there a command for finding all files on the system named ".bashrc" that modify the PS1 variable? I'd like to list the full file name(s) and the protection (including the full path). (5 Replies)
Discussion started by: raidkridley
5 Replies

6. Shell Programming and Scripting

how do i look for my .bashrc file

hi i am using cygwin and would like to modify my .bashrc file. How can search to find where it is? I have looked at multiple bashrc file in /etc but none of them seemed to work..thanks (12 Replies)
Discussion started by: npatwardhan
12 Replies

7. Shell Programming and Scripting

How to split a sentence

Hi, Can anybody help me out, how can I split the sentence, 11111 12-12-2002 1000 23 22222 11-11-2011 2000 24 13131 09-02-2002 like the below format, 11111 12-12-2002 1000 23 22222 11-11-2011 2000 24 etc.... Plz help... Thanks in advance...!! (14 Replies)
Discussion started by: Kattoor
14 Replies

8. Shell Programming and Scripting

.bashrc file

Hi experts, I am using bash shell and I cant find any .bashrc file in my home dir. Can anybody please help me out here.... If .bashrc file is not there, from where my shell config operates? Also I want to set my prompt like... $ Please advice. (5 Replies)
Discussion started by: gentleDean
5 Replies

9. Shell Programming and Scripting

bashrc not saving changes

I am trying to do some changes at bashrc file located at /etc directory of my server. First I tried to edit bashrc via FTP downloaded on my pc changed it and loaded back, but it seems like changes are not reflecting. Therefore I tried to change it via putty shel using vim bashrc command. but... (4 Replies)
Discussion started by: ninadgac
4 Replies

10. Shell Programming and Scripting

print in incremental order a sentence

Dear help! I want to print The number i is number i let i=1 to 5 output should be like The number 1 is number 1 The number 2 is number 2 The number 3 is number 3 The number 4 is number 4 The number 5 is number 5 Would be gr8 if you mke this with awk Thanks (7 Replies)
Discussion started by: Indra2011
7 Replies

11. Shell Programming and Scripting

Creating bashrc and vimrc using scripting

I am trying to write a bash script that will create a .bashrc and .vimrc. I was wondering if anyone would know how to do approach this. Would this work if there was no .bashrc file minus the "stuff" echo "stuff" >> .bashrc (5 Replies)
Discussion started by: meredith1990
5 Replies

12. Shell Programming and Scripting

I tried to add a permenat alais to the bashrc

Hey there first of all thanks for letting me on the site. I've broken my ~/.bashrc file I tried to add a permeant alais and failed now when I open the terminal is says this; bash: /home/josh/.bashrc: line 107: unexpected EOF while looking for matching `'' bash: /home/josh/.bashrc: line 116:... (6 Replies)
Discussion started by: Joshua Smith
6 Replies

13. OS X (Apple)

A system deletes my .bashrc file

It deletes my .bashrc file rarely but predictability after some unknown count of Mac's restarts. Has someone ever faced such behavior? How do I prevent OS X from modifying .bashrc? What ownership/permission should I set up to not let it happen? OS X Lion. (6 Replies)
Discussion started by: scrutinizerix
6 Replies

14. Shell Programming and Scripting

Read: no query process ERROR

Hi, With root user i set this in the .bashrc of user1 on machine 1 more .bashrc ./track.sh # .bashrc # Source global definitions if ; then . /etc/bashrc fi Content of track.sh are more track.sh read -p "Enter ID:" reason while ] # While string is different or empty...... (4 Replies)
Discussion started by: mohtashims
4 Replies

15. UNIX for Advanced & Expert Users

.bashrc questions

Are there any advantages of doing one over the other in your .bashrc? They both seem to do the same thing. HISTFILESIZE=10000 HISTSIZE=10000export HISTFILESIZE=10000 export HISTSIZE=10000 (4 Replies)
Discussion started by: cokedude
4 Replies