2
votes
4answers
90 views
Is there a more pythonic way to open a file if given one as an argument or stdin if not?
I'm trying to write a python script which follows the common unix command line pattern of accepting input from stdin if no file name is given. This is what I've been using:
if __ …
1
vote
1answer
16 views
Endianness in Unix hexdump
The following *nix command pipes a hex representation of an IP and port (127.0.0.1:80) into the hexdump command.
printf "\x7F\x00\x00\x01\x00\x50" | hexdump -e '3/1 "%u." /1 "%u:" …
0
votes
1answer
33 views
vi editor query
I use vi quite often to edit files.
Usually I need the file to appear on screen with line numbers.
For this I do
set nu in edit mode.
What a drag! Can I automate this? Is there an …
0
votes
1answer
25 views
Grep doesn’t work correctly with .as files
Here's the statement I'm running:
grep -i -H 'ConfigureControls' *.as
Note that I'm forcing file names with the -H flag.
What I get back is:
} } trac} } this.chair …
0
votes
1answer
18 views
curl + sessions
Hello!
I'm making POST requests with CURL, and I would like to output cookies made during that request... Is that possible? :)
0
votes
5answers
42 views
Problem in using Sed to remove leading and trailing spaces
Hi all,
I am using the following code to remove both leading and tailing spaces from all lines of a file A.txt
sed 's/^[ \t]*//;s/[ \t]*$//' ./A.txt > ./B.txt
The problem occu …
4
votes
1answer
40 views
What Is a Good Introduction and Tutorial on Internationalization and Localization?
My company uses an internally developed package to support internationalization/localization. However, it was developed some twenty years ago, and the libraries are restricted to o …
0
votes
1answer
18 views
Startup time in Solaris server using shell script
How to find the start up time of a Solaris server using a shell script?
1
vote
2answers
56 views
(*nix) Cloud/Cluster solutions for bulding fast & scalable web-services
I'm going to build a high-performance web service. It should use a database (or any other storage system), some processing language (either scripting or not), and a web-server daem …
0
votes
2answers
31 views
UNIX: Send Mail using SMTP Server
Hi All,
I would like to send an email through a remote SMTP server. How can this be done?
I will be sending the email from a bash shell script.
I'm using a unix machine.
uname - …
3
votes
4answers
120 views
How to get the true URL of a file on the web. (Python)
I notice that sometimes audio files on the internet have a "fake" URL.
http://garagaeband.com/3252243
And this will 302 to the real URL:
http://garageband.com/michael_jackson …
0
votes
3answers
34 views
Executing unix commands in ObjC
Hi All,
How to write a program for executing the 'ls' command in ObjC ?
Any API available ?
Thanks
0
votes
3answers
76 views
fclose()/pclose() may block on some file pointers
Calling fclose() here after dup()ing its file descriptor blocks until the child process has ended (presumably because the stream has ended).
FILE *f = popen("./output", "r");
int …
2
votes
3answers
62 views
Extract the last directory of a pwd output
How do I extract the last directory of a pwd output? I don't want to use any knowledge of how many levels there are in the directory structure. If I wanted to use that, I could do …
0
votes
5answers
24 views
while executing a shell script in Unix Bash Shell, how is a file location resolved for relative paths? rel. to the script.sh folder or the referenced file’s folder.
while executing a shell script in Unix Bash Shell, say any file in another folder and that is referenced by the script references some other file like ../../file_system_1/public/di …
