zsh-users
 help / color / mirror / code / Atom feed
* add 'sudo' to 'mv' if file isn't writable by $USER
@ 2011-09-14 22:19 TJ Luoma
  2011-09-15  3:30 ` Benjamin R. Haskell
  0 siblings, 1 reply; 3+ messages in thread
From: TJ Luoma @ 2011-09-14 22:19 UTC (permalink / raw)
  To: Zsh Users

I'm wondering if someone has already done this.

I have a function which does this:


move () {
	command which -s gmv
	if [ "$?" = "0" ]
	then
		gmv --verbose --backup=numbered $@
	else
		mv -v -i $@
	fi
}

(simply put: use 'gmv' if it exists, otherwise use 'mv')

That works pretty well (although if there are ways to do it better,
please let me know).

HOWEVER, now I want to do

"If $FILE is writable by $USER, do 'move' as above. ELSE use 'sudo'
before the mv or gmv command"

I can probably cobble together a solution, but I thought I'd check
first to see if someone here had already invented this wheel.

TjL


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-09-15 18:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-14 22:19 add 'sudo' to 'mv' if file isn't writable by $USER TJ Luoma
2011-09-15  3:30 ` Benjamin R. Haskell
2011-09-15 18:20   ` TJ Luoma

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).