Just use the shell
Posted Dec 20, 2006 14:10 UTC (Wed) by
Richard_J_Neill (subscriber, #23093)
Parent article:
A survey of Linux file managers (Linux.com)
It's much faster to use the shell, especially if:
* You know the readline shortcuts (Ctrl-A,E, Alt-F,B etc).
* You use the qmv and imv utilities for mass renaming of files.
* You have a "move to trashcan command" (I alias this as 'cn')
* You have the newer bash-completion enabled
* You have inputrc with:
set show-all-if-ambiguous on
which makes tab-completion so much more helpful.
* You use konsole with tabs, and name the tabs automatically: .bashrc:
if test "$DISPLAY"; then
if [ "$DISPLAY" == ":0" -o "$DISPLAY" == ":0.0" ];then
export PS1=$PS1"\[\e]30;\W/ \a\]\[\e]0;\a\]"
else
export PS1=$PS1"\[\e]30;\h:\W/ \a\]\[\e]0;\a\]"
fi
fi
* You are aware of zcat, strings, file, and the fact that less can cope
automatically with .ps, .pdf and .rpm files (they get viewed as text)
* You might, or might not wish to alias mv/cp/rm to "mv -i" etc.
Hope some of that is useful.
(
Log in to post comments)