Sponsored Content
Full Discussion: aliasing command
Homework and Emergencies Homework & Coursework Questions aliasing command Post 302602207 by marahtia on Sunday 26th of February 2012 10:20:38 PM
Old 02-26-2012
aliasing command

hi to all members in this forums .. Nice to meet you...
i only have a questions about command utility of "dd":
for example i will type:

pico trial

this is my file.

and save it and type chmod a+x trial

can there be a way that instead of typing:
Code:
dd if=trial of=trial.copy conv=ucase

so that my output in script trial will all become UPPERCASE.

And i want to change this "dd" command to "copyconv" just like the functionality of "dd" command also.. and the "conv=ucase" i would like to do the "conv=u" so that the content of my script trial will become UPPERCASE..

sample:

copyconv if=trial of=trial.copy conv=u??

Is this possible?? Someone help please...

Moderator's Comments:
Mod Comment Please use code tags!
for your code and data!

Last edited by vbe; 02-27-2012 at 04:09 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Basic regarding aliasing

Hi All, One small request. In UNIX/LINUX we can have our own aliases in .bashrc file. My doubt is when we add a new alias and if it is tried in already opened terminals it will not work, may be it is not going to recognise. Bit when we use the same alias in new terminal it will work. I... (1 Reply)
Discussion started by: chanakyahere
1 Replies

2. UNIX for Dummies Questions & Answers

What is IP aliasing ?

Hi, Can anyone tell me what is IP aliasing ? I do not know if this is the right place for this thread !!. Thanks in advance, Gideon. (2 Replies)
Discussion started by: preethgideon
2 Replies

3. UNIX for Dummies Questions & Answers

aliasing question in UNIX

Folks; I know this might sound stupid, but Can i alias a web link to another web link in a UNIX server? Let say i have a web link named http://test.new.com/wiki Can i alias that so when i click on it or i type it in the browser address it opens but the link in the browser say something like:... (1 Reply)
Discussion started by: Katkota
1 Replies

4. UNIX for Advanced & Expert Users

aliasing the TO name in Unix mails

HI All, I have a small question/clarification/doubt . Does anyone know how to provide alias in the mails that come from Unix servers. Like i have a Unix server that generates status mails every hour for a scheduled job , it sends me mails with status with the ID in from field as... (3 Replies)
Discussion started by: bsandeep_80
3 Replies

5. UNIX for Advanced & Expert Users

shell programming / aliasing / set -f

Here's my opportunity.... I want to turn off the * expansion, execute the shell script and have it see the arguement with the * and not all the filenames, and then set +f once the script is executed. 1) I have an alias set as follows: alias scp='set -f; /opt/dir1/dir2/script.sh ; set +f'... (1 Reply)
Discussion started by: hsamm
1 Replies

6. Red Hat

Cluster Suite IP-Aliasing

Hi, is it normal, that the IP alias (service IP) can't be seen with ifconfig -a , as eth0:1 for example the IP is on the node, you can ping it, and open ports for that IP look at this: # ip addr 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue link/loopback... (4 Replies)
Discussion started by: funksen
4 Replies

7. UNIX for Dummies Questions & Answers

How can I do aliasing in shellscript?

#Example.sh alias rmv 'sh Example2.sh' when i execute exapme.sh alias name not working. how i solve this problem?? (9 Replies)
Discussion started by: arun508.gatike
9 Replies

8. UNIX for Dummies Questions & Answers

passing command output from one command to the next command in cshell

HI Guys, I hope you are well. I am trying to write a script that gets executed every time i open a shell (cshell). I have two questions about that 1) I need to enter these commands $ echo $DISPLAY $ setenv $DISPLAY output_of_echo_$display_command How can i write a... (2 Replies)
Discussion started by: kaaliakahn
2 Replies

9. Solaris

Directory Aliasing

Hello, I need to rediret the directory location at run time as:- If I type cd /dir1/dir2 then it should take me to /dir1/dir3 at run time. Inside dir1, both dir2 and dir3 directories are present. Could anyone guild me over it? Thanks Shubham (5 Replies)
Discussion started by: shubh05
5 Replies

10. Shell Programming and Scripting

Abbreviated aliasing would be a great feature to bring to shells

Being able to mark in an alias definition a point of minimal abbreviation, an old feature of VAX/VMS shell (DCL) would be really nice in modern *nix shells. In DCL you used to be able to define an alias (in its own weird syntax) which would be something like this: $ alias fuz*zyanimals="cat... (5 Replies)
Discussion started by: unscripted
5 Replies
TRIAL(1)																  TRIAL(1)

NAME
trial - run unit tests SYNOPSIS
trial [options] [[file|package|module|TestCase|testmethod]...] trial --help DESCRIPTION
trial loads and executes a suite of unit tests, obtained from modules, packages and files listed on the command line. trial will take either filenames or fully qualified Python names as arguments. Thus 'trial myproject/foo.py', 'trial myproject.foo' and 'trial myproject.foo.SomeTestCase.test_method' are all valid ways to invoke trial. -b, --debug Run the tests in the Python debugger. Also does post-mortem debugging on exceptions. Will load '.pdbrc' from current directory if it exists. -B, --debug-stacktraces Report Deferred creation and callback stack traces --coverage Generate coverage information in _trial_temp/coverage/. Requires Python 2.3 or higher. --disablegc Disable the garbage collector. I don't know why this is in trial. -x, --extra Add an extra argument. (This is a hack necessary for interfacing with emacs's `gud'.) -e, --rterrors Print tracebacks to standard output as soon as they occur --force-gc Run gc.collect() before and after each test case. This can be used to isolate errors that occur when objects get collected. This option would be the default, except it makes tests run about ten times slower. -h, --help Print a usage message to standard output, then exit. --help-reporters Print a list of valid reporters to standard output, then exit. --help-reactors List the names of possibly available reactors. -l, --logfile <logfile> Direct the log to a different file. The default file is 'test.log'. <logfile> is relative to _trial_temp. -n, --dry-run Go through all the tests and make them pass without running. -N, --no-recurse By default, trial recurses through packages to find every module inside every subpackage. Unless, that is, you specify this option. --nopm Don't automatically jump into debugger for post-mortem analysis of exceptions. Only usable in conjunction with --debug. --profile Run tests under the Python profiler. -r, --reactor <reactor> Choose which reactor to use. See --help-reactors for a list. --recursionlimit Set Python's recursion limit. See sys.setrecursionlimit() --reporter Select the reporter to use for Trial's output. Use the --help-reporters option to see a list of valid reporters. --spew Print an insanely verbose log of everything that happens. Useful when debugging freezes or locks in complex code. --tbformat <format> Format to display tracebacks with. Acceptable values are 'default', 'brief' and 'verbose'. 'brief' produces tracebacks that play nicely with Emacs' GUD. --temp-directory <directory> WARNING: Do not use this options unless you know what you are doing. By default, trial creates a directory called _trial_temp under the current working directory. When trial runs, it first deletes this directory, then creates it, then changes into the directory to run the tests. The log file and any coverage files are stored here. Use this option if you wish to have trial run in a directory other than _trial_temp. Be warned, trial will delete the directory before re-creating it. --testmodule <filename> Ask trial to look into <filename> and run any tests specified using the Emacs-style buffer variable 'test-case-name'. --unclean-warnings As of Twisted 8.0, trial will report an error if the reactor is left unclean at the end of the test. This option is provided to assist in migrating from Twisted 2.5 to Twisted 8.0 and later. Enabling this option will turn the errors into warnings. -u, --until-failure Keep looping the tests until one of them raises an error or a failure. This is particularly useful for reproducing intermittent failures. --version Prints the Twisted version number and exit. --without-module <modulenames> Simulate the lack of the specified comma-separated list of modules. This makes it look like the modules are not present in the sys- tem, causing tests to check the behavior for that configuration. -z, --random [<seed>] Run the tests in random order using the specified seed. AUTHOR
Written by Jonathan M. Lange REPORTING BUGS
To report a bug, visit http://twistedmatrix.com/bugs/ COPYRIGHT
Copyright (C) 2003-2008 Twisted Matrix Laboratories This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICU- LAR PURPOSE. Oct 2007 TRIAL(1)
All times are GMT -4. The time now is 09:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy