OVH Cloud OVH Cloud

Alternative à Finder + editeur de fichier ?

17 réponses
Avatar
Dom
Bonjour,

Je souhaiterai pouvoir gérer les fichiers et dossiers système de mon MacOSX
10.2 pour pouvoir déployer une conf Apache. Malheureusement je ne suis pas
expert Mac et l'optique de ne pouvoir utiliser que le Terminal pour ma
navigation ne m'enchante guère (Le finder ne permettant pas la visualisation
des fichiers et dossiers systeme). De plus, allergique à "VI", connaissez
vous un soft plus agréable permettant d'éditer les fichiers systemes ?
Merci à tous,

Dom

7 réponses

1 2
Avatar
laurent.pertois
Jacques Perrocheau wrote:

Saïd wrote:

pour la partie navigation le Finder marche quand meme, il te suffit de
faire shift-pomme-G et de taper le chemin du dossier à ouvrir.
Si c'est un dossier ou tu vas "aller" de maniere récurente, une fois
ouvert tu attrapes son icone dans la barre de titre de la fenetre, et tu
la drag-&-drop dans la barre latérale avec les autres raccoursis de
dossier.



T'es sur que ca marche sous 10.2?


Marche sous Mac OS 10.2.x


Nope, il n'y a pas de barre latérale en 10.2, il faut le mettre dans la
barre d'outils ;-)

--
Politically Correct Unix - UTILITIES
The "touch" command has been removed from the standard distribution due
to its inappropriate use by high-level managers.



Avatar
fr_jacqu
Dom wrote:

. Malheureusement je ne suis pas
expert Mac et l'optique de ne pouvoir utiliser que le Terminal pour ma
navigation ne m'enchante guère (Le finder ne permettant pas la visualisation
des fichiers et dossiers systeme). De plus, allergique à "VI", connaissez
vous un soft plus agréable permettant d'éditer les fichiers systemes ?


Je ne saurais trop te recommander BBEdit, dans sa dernière version
7.1.4, c'est un véritable couteau suisse des éditeurs de texte. Il est
superéquipé pour éditer des shells scripts, de l'Unix, de l'HTML, du
XML, du Perl, du PHP, du Python, ou n'importe quoi d'autre, avec des
outils d'aide étonnants.

En outre, on peut l'appeler depuis le Terminal, grâce à une commande
Unix que l'installeur met en place si tu la souhaites. Depuis le
Terminal, il suffit de faire bbedit suivi, en argument, du chemin
complet du fichier et hop, ça ouvre BBEdit avec le fichier en question.

--
F. Jacquemin

Avatar
Martin.Jourdan.nospam
Dom wrote:

Je souhaiterai pouvoir gérer les fichiers et dossiers système de mon MacOSX
10.2 pour pouvoir déployer une conf Apache. Malheureusement je ne suis pas
expert Mac et l'optique de ne pouvoir utiliser que le Terminal pour ma
navigation ne m'enchante guère (Le finder ne permettant pas la visualisation
des fichiers et dossiers systeme).


Ben pour gérer des outils "système" comme Apache, sans le Terminal tu
seras vraiment limité. A mon avis tu devrais investir un peu de ton
temps dans la découverte des outils Unix de base.

Sinon, Path Finder est un remplaçant du Finder avec des possibilités
très intéressantes
<http://www.versiontracker.com/dyn/moreinfo/macosx/16678>

De plus, allergique à "VI", connaissez
vous un soft plus agréable permettant d'éditer les fichiers systemes ?


Dans le terminal, tu as une version d'Emacs livrée par Apple. Pour moi,
Emacs est le roi des éditeurs de texte ! Ceci dit, la version "terminal
pur" installée par défaut est un peu frustrante à utiliser, je conseille
plutôt la version X11 standard installable avec Fink ou bien la version
pure Aqua <http://www.versiontracker.com/dyn/moreinfo/macosx/17244>.
--
Martin Jourdan
Informaticien, fan de Macintosh (X), de Peter Gabriel et de volley-ball

Avatar
laurent.pertois
Matt wrote:

man open pour + d'infos croustillantes.


Ben, l'outil cli de BareBones est assez complet aussi :

BBEDIT(1) BBEdit Command Line Reference
BBEDIT(1)



NAME bbedit - It doesn't suck.

SYNOPSIS bbedit [ -bchlpuvVw --resume ] [ -e <encoding_name> ] [ -t
<string> ] [ +<n> ] [ file ... ]

DESCRIPTION The bbedit tool is a simple utility that allows you to open
files in BBEdit via the command line. Type 'bbedit' followed by a list
of file names to open those files for editing in BBEdit. You can also
pipe stdin to the bbedit tool, and it will open in a new untitled window
in BBEdit. For example:

ls -la | bbedit

If you invoke the bbedit tool with no parameters, it will accept
stdin from the terminal; terminate with control-D (end-of-file)
to send it to BBEdit.

The bbedit tool is also suitable for use as your EDITOR
environment variable. See the -w option below for details.

BBEdit is a commercial text editor from Bare Bones Software.

OPTIONS Single-character switches may be clustered together. For
example, the following two commands are equivalent:

bbedit -bp filename -p filename

Use "--" to end switch parsing. For example, to open a file named
"-z", use:

bbedit -- -z

Most arguments have both a single-character short form (preceded
by one dash), and a long form (preceded by two dashes).

+<line number> Go to line number. For example, to select line 33:

bbedit +33 filename

-b, --background Launch BBEdit in the background if it's not
already running, or keep it in the background if it is. If this
option is absent, BBE- dit will come to the foreground after the
files are opened.

-c, --create Create the specified files, unless they exist
already, in which case they are opened. The new files are created
empty, with the standard Unix type and creator (i.e. none). Line
endings are determined by the "Default Line Breaks" setting in
the "Text Files: Saving" panel of BBEdit's Preferences window.
(Use the -u option to force Unix line endings.)

-e, --encoding Specify the internet name of an encoding to open a
file using that encoding.

bbedit --encoding iso-8859-1 foo.txt utf-8 foo.txt

-h, --help Display a basic help line with a summary of the
available options.

-l, --launch Launch BBEdit (or activate it, if it's already
running), without opening any files.

-p, --print Print the specified files on your currently selected
printer.

-t, --pipe-title Uses the specified string as the title of the
window which holds the pipe contents, so you can more easily
locate it later.

ls -al | bbedit -t "My Directory Listing"

-u, --create-unix Create the specified files, unless they exist
already, in which case they are opened. New files are created
with Unix line end- ings. This option is useful if you wish to
create a file with Unix line endings, but have Mac line endings
specified as the default for files created within BBEdit (see the
"Text Files: Saving" panel in BBEdit's Preferences window).

-v, --version Display the current version number of the bbedit
command line tool and the BBEdit application.

-V, --short-version Display the short-form version number of the
bbedit command line tool.

--resume (no short variant) Used in combination with -w or
--wait, this switch will cause the application whch was frontmost
when the bbedit tool was invoked to be made frontmost again once
you close the file(s) specified on the command line

This is convenient if you are using the Terminal (or any
third- party equivalent) to invoke a command which uses
BBEdit as its editor (p4, cvs), and want to return back to
the Terminal when the editing session is over.

bbedit --wait --resume ~/foo.txt

-w, --wait Wait until the file is closed in BBEdit. Normally, the
bbedit tool exits immediately after the file arguments are opened
in BBEdit. The -w option allows the bbedit tool to be used as an
external editor for Unix tools that use the EDITOR global
environment vari- able. To make this work using tcsh, add the
following line to your .cshrc (or .tcshrc) file:

setenv EDITOR "bbedit -w"

Some tools (notably crontab), will not work correctly if
your EDI- TOR variable consists of multiple terms. You can
work around this by creating a simple shell script that
calls bbedit -w, then using the shell script as your EDITOR.
For example:

#!/bin/sh bbedit -w "$@"

AUTHORS Bare Bones Software, Inc. Web site: http://www.barebones.com/
Email:




October 2003 Bare Bones Software
BBEDIT(1)


--
Politically Correct Unix - UTILITIES
The "touch" command has been removed from the standard distribution due
to its inappropriate use by high-level managers.

Avatar
laurent.pertois
Matt wrote:

On Mon, 31 May 2004 23:12:38 +0200,
Laurent Pertois wrote:

Ben, l'outil cli de BareBones est assez complet aussi


Celui de vim aussi ;)


Je n'ai jamais dit le contraire juste que pour le macounet, BBEdit est
plus... dans les habitudes ;-)

--
Politically Correct Unix - UTILITIES
The "touch" command has been removed from the standard distribution due
to its inappropriate use by high-level managers.


Avatar
laurent.pertois
Matt wrote:

Bien entendu, j'ai répondu cela sur un ton sarcastique ;)


Je ne l'avais pas pris autrement sinon je t'aurais répondu que ce
n'était que le man de l'outil CLI de BBEdit et que l'essentiel des
fonctionnalités de ce dernier était dans la GUI et donc dans le manuel
très complet ;-)

--
Politically Correct Unix - UTILITIES
The "touch" command has been removed from the standard distribution due
to its inappropriate use by high-level managers.

Avatar
Nicolas.MICHEL
Dom wrote:

Bonjour,

Je souhaiterai pouvoir gérer les fichiers et dossiers système de mon MacOSX
10.2 pour pouvoir déployer une conf Apache. Malheureusement je ne suis pas
expert Mac et l'optique de ne pouvoir utiliser que le Terminal pour ma
navigation ne m'enchante guère (Le finder ne permettant pas la visualisation
des fichiers et dossiers systeme). De plus, allergique à "VI", connaissez
vous un soft plus agréable permettant d'éditer les fichiers systemes ?
Merci à tous,


Simple, mais pas gratuit, tu as besoins de 3 softs :
-pseudo
-RBrowserLite
-BBEdit lite

dispo sur versiontracker, tu cliques-glisses RBrowser sur pseudo pour
naviguer en affichant les fichiers cachés + les fichiers de root, puis
tu clic-glisse BBedit pour pouvoir éditer des fichiers appartenant à
root. BBedit peut être remplacé par n'importe quel autre éditeur, de ton
choix.

C'est rien que du graphique, et j'ai failli oublier tout de vim en
testant la chose.

--
S'il n'y a pas de solutions, c'est qu'il n'y a pas de problèmes
iChat/AIM : michelnicolas

1 2