Re: script

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 5/22/06, Daniel Hedlund <daniel@xxxxxxxxxxxx> wrote:
Kaushal,

> va=`cut -d"/" -f2 out`
> cd $va
>
> The issue is that it doesnot cd to the directory after running the
> script means
> cd sab.
Do you have any spaces in any of the directories that you're trying to
cd to?  If so, this could be your problem; you'll need to escape the
variable (cd "$va" for example).  This isn't the best way to handle
escaped characters but works as long as filenames don't have any
quotation marks in them.  How are you generating the file "out"?  If
it's using a command like 'ls', you can add "-Q" or "--quote-name" to
the command which will automatically escape the paths.

Cheers,

Daniel Hedlund
daniel@xxxxxxxxxxxx

--
fedora-list mailing list
fedora-list@xxxxxxxxxx
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list


Hi Daniel

Now the script looks like

#!/bin/bash

va=`cut -d"/" -f2 out`
echo $va
cd "$va"

But didnot worked for me

Kaushal

--
fedora-list mailing list
fedora-list@xxxxxxxxxx
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
[Index of Archives]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [Fedora Magazine]     [Fedora News]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Maintainers]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Legacy]     [Fedora Desktop]     [Fedora Fonts]     [ATA RAID]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [SSH]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Centos]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Tux]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Asterisk PBX]     [Fedora Sparc]     [Fedora Universal Network Connector]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux