File: INSTALL

package info (click to toggle)
cdargs 1.29-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 484 kB
  • ctags: 103
  • sloc: sh: 2,954; cpp: 1,171; makefile: 72; lisp: 70; csh: 3
file content (111 lines) | stat: -rw-r--r-- 3,430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
COMPILATION
===========
Installation is easy, do:

$ configure
$ make

then become root and do:

# make install-strip

If you're not content with the displayed width of the description you
might want to change cdargs.cc. Look for the lines
# define DESCRIPTION_MAXLENGTH 18
# define DESCRIPTION_BROWSELENGTH 8
and change the numbers according to your taste.

CREATE SHELL FUNCTION(S)
========================
For Versions 1.19 And Newer (bash)
----------------------------------
Simply copy the file contrib/cdargs-bash.sh somewhere into your $PATH
and put a line like
source cdargs-bash.sh
in your ~/.bashrc. This loads some very useful functions into your shell.
 (Please note that these functions could be improved but I don't have
 enough bash knowledge for that.)

For Versions 1.20 And Newer (tcsh)
----------------------------------
Copy the file contrib/cdargs-tcsh.csh to a place that you like and
source it from your ~/.cshrc (or ~/.tcsh ?).
Please note that I don't know much about tcsh (im bashi-ish) and thus
this might be quite quirky... Any help appreciated in making the tcsh
expansion as powerfull as Dan's bash functions.

For Older Versions 
------------------
Put a line like the following into your shell startup-script
(.profile, .bashrc, .zshrc, whatever) to create a shell function:

function cv () { cdargs "$1" && cd "`cat "$HOME/.cdargsresult"`" }

If you want to you can remove the file in your homedirectory after successfully 
using cdargs:

function cv () { cdargs "$1" && cd "`cat "$HOME/.cdargsresult"`" && rm -f "$HOME/.cdargsresult" }

or you can echo the directory you changed to:

function cv () { cdargs "$1" && cd "`cat "$HOME/.cdargsresult"`" && pwd ; }

Another thing you might find useful is an alias for adding paths:
function ca () { cdargs --add="$1" ; }
function capwd () { cdargs --add=":$1:"`pwd` ; }


(Note that the '&&' is just possible since version 1.11 which 
introduced a reasonable return code to cdargs. Both version should work.)

WRAPPING
========
If you do not like the cursor wrapping around on the top and the
bottom of the list, start cdargs with the additional option --nowrap:

Example:
function cb () { cdargs --nowrap "$1" && cd `cat $HOME/.cdargsresult` ; }


MORE HELP
=========
For more information try:

$ configure --help
$ cdargs --help
or press 'H' or '?' while running cdargs. 

Additionally since version 1.16 cdargs comes with a manpage.

GNU/X Emacs
===========
Since version 1.24 there is a cdargs.el which you just put somewhere
where Emacs can find it (see variable load-path) and the require it in
your personal init file (may be one of ~/.emacs, ~/.xemacs/init.el
~/.xemacs/my/config/personal.el or something else):
(require 'cdargs)

Appendix:
=========

Creating an RPM (thanks Oron!)
------------------------------

First way (assuming all directories relative to /usr/src/redhat):
   - Put the .spec file in the SPECS directories
   - Put the tar.gz file in the SOURCES directory
   - From the SPECS directory run:
        rpm -bb cdargs.spec # to build only binary RPM
        rpm -bs cdargs.spec # to build only source RPM
        rpm -ba cdargs.spec # to build both
Second way (assuming the tar.gz file contains .spec file):
   - Simply run:
        rpm -ta cdargs-<version>.tar.gz

The resulting binary RPM will be below the RPMS directory (e.g:
RPMS/i386).

Signing The Tarball
-------------------
gpg -a --sign cdargs-<version>.tar.gz