Sponsored Content
Top Forums Shell Programming and Scripting Blog-Thread: Creating a Shell Wrapper and Runtime Modifier (SWARM) Post 303046221 by sea on Tuesday 28th of April 2020 04:18:54 AM
Old 04-28-2020
Strange...
'All' I had to do was to remove some echos of a bool function...

From:
Code:
	swarm.util.isDir() { #  /path/to/dir
	# Returns true if passed string is a directory
	# This function is assigned to: $isDir
		swarm.protect "$FUNCNAME" "${@}" && exit 1
		[[ -d "$1" ]] && \
			RET=0 && \
			$ECHO true || \
			$ECHO false
		return ${RET:-1}
	}

To:
Code:
	swarm.util.isDir() { #  /path/to/dir
	# Returns true if passed string is a directory
	# This function is assigned to: $isDir
		swarm.protect "$FUNCNAME" "${@}" && exit 1
		[[ -d "$1" ]] && RET=0 
		return ${RET:-1}
	}

But why it was showing those 'true' and 'false' echos only as root, but not as normal user... idk...
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

korn shell version at runtime?

How can I check what kornshell version I am using at runtime from within a kornshell script? (3 Replies)
Discussion started by: qanda
3 Replies

2. Shell Programming and Scripting

crontab is not creating runtime files which are in script..

this is the output i am getting here.. cp: cannot create /wls_domains/eoigw/eoigwsA/deliv/cron/MailingScript/eoigwsA_Health_Status_Report.html: Permission denied /wls_domains/eoigw/eoigwsA/deliv/cron/MailingScript/ /wls_domains/eoigw/eoigwsA/deliv/cron/MailingScript/GenerateReport.sh:... (6 Replies)
Discussion started by: surekha268
6 Replies

3. Shell Programming and Scripting

Korn Shell Wrapper script

Hi Guys, I am trying write a wrapper script but I don't have any idea. I have 4 different korn shell scripts and all of them needs some parameters from command line (positional parameter). My script cant be interactive because its supposed to be automated. I am confused how can I write a wrapper... (6 Replies)
Discussion started by: pareshan
6 Replies

4. Web Development

Creating a blog site on a local computer

Hello! I would like to create a blog website on a web domain of mine. The blog will be used for publishing economics-lated articles. I tried to use a few open source packages for blog creation (WorldPress, b2evolution, Movable type) which I wanted to test on a local computer before arranging... (5 Replies)
Discussion started by: degoor
5 Replies

5. Programming

creating multiple threads using single thread id

Hi all, Can I create multiple threads using single thread_id like pthread_t thread_id; pthread_create(&thread_id, NULL, &print_xs, NULL); pthread_create(&thread_id, NULL, &print_ys, NULL); pthread_create(&thread_id, NULL, &print_zs, NULL); pthread_join(thread_id, NULL); what... (2 Replies)
Discussion started by: zing_foru
2 Replies

6. Shell Programming and Scripting

Shell Runtime Statistics

Hi, I am trying to capture runtime stats of a shell script (c shell). Are there system variables to call? Or should I create a date variable at the start of the script and at the end of the script? I am trying to capture the time if the script stops or ends with error. Please help. ... (4 Replies)
Discussion started by: CKT_newbie88
4 Replies

7. Shell Programming and Scripting

Wrapper Script in Perl Or shell

Hello, My requirement is based on Oracle where we run a perl script and it asked some questions.I want to write a wrapper which will answer all these questions. How is it possible. Thanks (16 Replies)
Discussion started by: cotton
16 Replies

8. Homework & Coursework Questions

Shell Script average runtime

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Make a bash script that calculates average runtime for the first two scripts you made. The average should be... (17 Replies)
Discussion started by: navlelo
17 Replies

9. Shell Programming and Scripting

Shell Script and Progress Bar or GUI Wrapper

Hi, I have shell script that I am running under Ubuntu as root. Is it possible to hide the command window and show the user some sort of progress /random progress bar / or other form of GUI interaction? On MAC, I have been using Platypus but on Ubuntu I am not sure what to do. (4 Replies)
Discussion started by: naveedanwar4u
4 Replies
QUrlInfo(3qt)															     QUrlInfo(3qt)

NAME
QUrlInfo - Stores information about URLs SYNOPSIS
#include <qurlinfo.h> Public Members QUrlInfo () QUrlInfo ( const QUrlOperator & path, const QString & file ) QUrlInfo ( const QUrlInfo & ui ) QUrlInfo ( const QString & name, int permissions, const QString & owner, const QString & group, uint size, const QDateTime & lastModified, const QDateTime & lastRead, bool isDir, bool isFile, bool isSymLink, bool isWritable, bool isReadable, bool isExecutable ) QUrlInfo ( const QUrl & url, int permissions, const QString & owner, const QString & group, uint size, const QDateTime & lastModified, const QDateTime & lastRead, bool isDir, bool isFile, bool isSymLink, bool isWritable, bool isReadable, bool isExecutable ) QUrlInfo & operator= ( const QUrlInfo & ui ) virtual ~QUrlInfo () virtual void setName ( const QString & name ) virtual void setDir ( bool b ) virtual void setFile ( bool b ) virtual void setSymLink ( bool b ) virtual void setOwner ( const QString & s ) virtual void setGroup ( const QString & s ) virtual void setSize ( uint size ) virtual void setWritable ( bool b ) virtual void setReadable ( bool b ) virtual void setPermissions ( int p ) virtual void setLastModified ( const QDateTime & dt ) bool isValid () const QString name () const int permissions () const QString owner () const QString group () const uint size () const QDateTime lastModified () const QDateTime lastRead () const bool isDir () const bool isFile () const bool isSymLink () const bool isWritable () const bool isReadable () const bool isExecutable () const bool operator== ( const QUrlInfo & i ) const Static Public Members bool greaterThan ( const QUrlInfo & i1, const QUrlInfo & i2, int sortBy ) bool lessThan ( const QUrlInfo & i1, const QUrlInfo & i2, int sortBy ) bool equal ( const QUrlInfo & i1, const QUrlInfo & i2, int sortBy ) DESCRIPTION
The QUrlInfo class stores information about URLs. This class is just a container for storing information about URLs, which is why all information must be passed in the constructor. Unless you're reimplementing a network protocol you're unlikely to create QUrlInfo objects yourself, but you may receive QUrlInfo objects from functions, e.g. QUrlOperator::info(). The information that can be retrieved includes name(), permissions(), owner(), group(), size(), lastModified(), lastRead(), isDir(), isFile(), isSymLink(), isWritable(), isReadable() and isExecutable(). See also Input/Output and Networking and Miscellaneous Classes. MEMBER FUNCTION DOCUMENTATION
QUrlInfo::QUrlInfo () Constructs an invalid QUrlInfo object with default values. See also isValid(). QUrlInfo::QUrlInfo ( const QUrlOperator & path, const QString & file ) Constructs a QUrlInfo object with information about the file file in the path. It tries to find the information about the file in the QUrlOperator path. If the information is not found, this constructor creates an invalid QUrlInfo, i.e. isValid() returns FALSE. You should always check if the URL info is valid before relying on the return values of any getter functions. If file is empty, it defaults to the QUrlOperator path, i.e. to the directory. See also isValid() and QUrlOperator::info(). QUrlInfo::QUrlInfo ( const QUrlInfo & ui ) Copy constructor, copies ui to this URL info object. QUrlInfo::QUrlInfo ( const QString & name, int permissions, const QString & owner, const QString & group, uint size, const QDateTime & lastModified, const QDateTime & lastRead, bool isDir, bool isFile, bool isSymLink, bool isWritable, bool isReadable, bool isExecutable ) Constructs a QUrlInfo object by specifying all the URL's information. The information that is passed is the name, file permissions, owner and group and the file's size. Also passed is the lastModified date/time and the lastRead date/time. Flags are also passed, specifically, isDir, isFile, isSymLink, isWritable, isReadable and isExecutable. QUrlInfo::QUrlInfo ( const QUrl & url, int permissions, const QString & owner, const QString & group, uint size, const QDateTime & lastModified, const QDateTime & lastRead, bool isDir, bool isFile, bool isSymLink, bool isWritable, bool isReadable, bool isExecutable ) Constructs a QUrlInfo object by specifying all the URL's information. The information that is passed is the url, file permissions, owner and group and the file's size. Also passed is the lastModified date/time and the lastRead date/time. Flags are also passed, specifically, isDir, isFile, isSymLink, isWritable, isReadable and isExecutable. QUrlInfo::~QUrlInfo () [virtual] Destroys the URL info object. The QUrlOperator object to which this URL referred (if any) is not affected. bool QUrlInfo::equal ( const QUrlInfo & i1, const QUrlInfo & i2, int sortBy ) [static] Returns TRUE if i1 equals to i2; otherwise returns FALSE. The objects are compared by the value, which is specified by sortBy. This must be one of QDir::Name, QDir::Time or QDir::Size. bool QUrlInfo::greaterThan ( const QUrlInfo & i1, const QUrlInfo & i2, int sortBy ) [static] Returns TRUE if i1 is greater than i2; otherwise returns FALSE. The objects are compared by the value, which is specified by sortBy. This must be one of QDir::Name, QDir::Time or QDir::Size. QString QUrlInfo::group () const Returns the group of the URL. See also isValid(). bool QUrlInfo::isDir () const Returns TRUE if the URL is a directory; otherwise returns FALSE. See also isValid(). Examples: bool QUrlInfo::isExecutable () const Returns TRUE if the URL is executable; otherwise returns FALSE. See also isValid(). bool QUrlInfo::isFile () const Returns TRUE if the URL is a file; otherwise returns FALSE. See also isValid(). bool QUrlInfo::isReadable () const Returns TRUE if the URL is readable; otherwise returns FALSE. See also isValid(). bool QUrlInfo::isSymLink () const Returns TRUE if the URL is a symbolic link; otherwise returns FALSE. See also isValid(). bool QUrlInfo::isValid () const Returns TRUE if the URL info is valid; otherwise returns FALSE. Valid means that the QUrlInfo contains real information. For example, a call to QUrlOperator::info() might return a an invalid QUrlInfo, if no information about the requested entry is available. You should always check if the URL info is valid before relying on the values. bool QUrlInfo::isWritable () const Returns TRUE if the URL is writable; otherwise returns FALSE. See also isValid(). QDateTime QUrlInfo::lastModified () const Returns the last modification date of the URL. See also isValid(). Example: network/ftpclient/ftpmainwindow.ui.h. QDateTime QUrlInfo::lastRead () const Returns the date when the URL was last read. See also isValid(). bool QUrlInfo::lessThan ( const QUrlInfo & i1, const QUrlInfo & i2, int sortBy ) [static] Returns TRUE if i1 is less than i2; otherwise returns FALSE. The objects are compared by the value, which is specified by sortBy. This must be one of QDir::Name, QDir::Time or QDir::Size. QString QUrlInfo::name () const Returns the file name of the URL. See also isValid(). Example: network/ftpclient/ftpmainwindow.ui.h. QUrlInfo &; QUrlInfo::operator= ( const QUrlInfo & ui ) Assigns the values of ui to this QUrlInfo object. bool QUrlInfo::operator== ( const QUrlInfo & i ) const Compares this QUrlInfo with i and returns TRUE if they are equal; otherwise returns FALSE. QString QUrlInfo::owner () const Returns the owner of the URL. See also isValid(). int QUrlInfo::permissions () const Returns the permissions of the URL. See also isValid(). void QUrlInfo::setDir ( bool b ) [virtual] If b is TRUE then the URL is set to be a directory; if  is FALSE then the URL is set not to be a directory (which normally means it is a file). (Note that a URL can refer to both a file and a directory even though most file systems do not support this.) If you call this function for an invalid URL info, this function turns it into a valid one. See also isValid(). Example: network/networkprotocol/nntp.cpp. void QUrlInfo::setFile ( bool b ) [virtual] If b is TRUE then the URL is set to be a file; if  is FALSE then the URL is set not to be a file (which normally means it is a directory). (Note that a URL can refer to both a file and a directory even though most file systems do not support this.) If you call this function for an invalid URL info, this function turns it into a valid one. See also isValid(). Example: network/networkprotocol/nntp.cpp. void QUrlInfo::setGroup ( const QString & s ) [virtual] Specifies that the owning group of the URL is called s. If you call this function for an invalid URL info, this function turns it into a valid one. See also isValid(). void QUrlInfo::setLastModified ( const QDateTime & dt ) [virtual] Specifies that the object the URL refers to was last modified at dt. If you call this function for an invalid URL info, this function turns it into a valid one. See also isValid(). void QUrlInfo::setName ( const QString & name ) [virtual] Sets the name of the URL to name. The name is the full text, for example, "http://doc.trolltech.com/qurlinfo.html". If you call this function for an invalid URL info, this function turns it into a valid one. See also isValid(). Example: network/networkprotocol/nntp.cpp. void QUrlInfo::setOwner ( const QString & s ) [virtual] Specifies that the owner of the URL is called s. If you call this function for an invalid URL info, this function turns it into a valid one. See also isValid(). void QUrlInfo::setPermissions ( int p ) [virtual] Specifies that the URL has access permisions, p. If you call this function for an invalid URL info, this function turns it into a valid one. See also isValid(). void QUrlInfo::setReadable ( bool b ) [virtual] Specifies that the URL is readable if b is TRUE and not readable if b is FALSE. If you call this function for an invalid URL info, this function turns it into a valid one. See also isValid(). Example: network/networkprotocol/nntp.cpp. void QUrlInfo::setSize ( uint size ) [virtual] Specifies the size of the URL. If you call this function for an invalid URL info, this function turns it into a valid one. See also isValid(). void QUrlInfo::setSymLink ( bool b ) [virtual] Specifies that the URL refers to a symbolic link if b is TRUE and that it does not if b is FALSE. If you call this function for an invalid URL info, this function turns it into a valid one. See also isValid(). Example: network/networkprotocol/nntp.cpp. void QUrlInfo::setWritable ( bool b ) [virtual] Specifies that the URL is writable if b is TRUE and not writable if b is FALSE. If you call this function for an invalid URL info, this function turns it into a valid one. See also isValid(). Example: network/networkprotocol/nntp.cpp. uint QUrlInfo::size () const Returns the size of the URL. See also isValid(). Example: network/ftpclient/ftpmainwindow.ui.h. SEE ALSO
http://doc.trolltech.com/qurlinfo.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qurlinfo.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QUrlInfo(3qt)
All times are GMT -4. The time now is 07:27 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy