-1
votes
0answers
34 views

Good tutorial for using mv with pattern matching/grep [closed]

I've been using mv to batch rename files in terminal, but find I'm always copying code and using trial and error to tweak it to get what I want, without ever really understanding what each bit does ...
0
votes
4answers
440 views

auto-reload html file with a browser via terminal command

I am trying to do some small html web stuff, and would find it incredibly useful to be able to see live updates of the html file viewed through a browser whenever I save my file. I know there are ...
1
vote
2answers
34 views

What does the -f flag in tail do?

I know tail prints the last few lines of a file. I read the documentation for tail man tail and it says the -f option causes a tail to not stop when end of file is reached but rather to ...
0
votes
3answers
80 views

Clearing output of a terminal program in Linux C

I want to clear the output of a C program produced with printf statements. I want to clear only one line, for example: [source] printf("AAAAAAAAAAAAAA"); printf("BBBBBBBBBBBBBB"); ...
0
votes
0answers
10 views

How to open files with forward dash in linux [migrated]

I need to open a file with filename that contains forward slashes. I am wondering how I can do that. I have been searching through Google and I can't seem to find a way. Thanks
0
votes
1answer
25 views

Print readable SQL output in unix terminal

How can I output SQL in Terminal so that is readable even for very long rows? I have SQL output that is very messy since each row is very long. This makes the table jumbled in my terminal. I ...
0
votes
0answers
13 views

tmux resize on focus

I'd like to be able to specify a secondary size parameter for a particular pane so that it assigns the new size upon focusing the pane, and returns it upon exiting. So e.g. (Note [] represents ...
0
votes
4answers
27 views

UNIX basic ftp upload

I'm trying to get terminal to upload a file for me, in this case: file.txt Unfortunately, it won't work, no matter what I try. #!/bin/bash HOST=* USER=* PASS=* # I'm 100% sure the ...
0
votes
1answer
32 views

Mechanism for linux output in terminal when using system function read() & write()

Code: #include <stdio.h> #include <unistd.h> int main(void) { char buf[BUFSIZ]; int n; while((n = read(0, buf, BUFSIZ)) > 0 && printf("1:%d ", n)) { ...
1
vote
2answers
24 views

Single Line sftp from Terminal

Several times throughout the day, I may be running a test where I need to look through a log file on a remote server. I've gotten used to using my terminal to sftp into the remote server and pull the ...
0
votes
1answer
29 views

How do I get the unix terminal to say how many files are left to run, and which file it is working on?

I have a shell script that is sending in about 150 files to a python program I wrote. I have no idea how long it is going to take, so I was wondering if there was a terminal command to either: a) ...
0
votes
1answer
34 views

Java key release event from STDIN in terminal raw mode

I'm trying to write a console game using java, and when you hold down a key, I want it to move your character constantly. This means I need key press and key release events, because there is a delay ...
0
votes
1answer
33 views

What is the usage of braces in unix commands?

I have been looking all over for how to use the {} feature in unix filenames. For example, I have a directory that has subdirectories named as an ID#. Each subdirectory has a recorded audio file named ...
2
votes
0answers
46 views

Set the terminal tab title as prompt name in unix

Lets say, the prompt is as below run_scripts > How to set that terminal tab title same as prompt i.e Terminal tab tile also should be run_scripts> So that terminal title ...
0
votes
2answers
49 views

Automate SMTP Using Python

I'm just beginning to use python to automate sending emails through gmail. I have gotten the whole process to work just typing directly into the command line, but now I want to automate the process ...
3
votes
2answers
107 views

Why does RSA encrypted text give me different results for the same text

I am encrypting data with openSSL using RSA encryption, which works fine. My understanding of RSA is, that encrypting the same data with the same public key will always give you the same result (as ...
1
vote
0answers
51 views

How to pipe a variable as password in a bash script when requiring root access [duplicate]

I'm trying to make a shell script which asks the user in the beginning for a password and then stores it in a variable so it may be used each time the script requires root access. My thought was to ...
-1
votes
2answers
43 views

How to add text to the beginning of all files in a folder? [closed]

I have a folder with 1,000 small text files in it, and I need to modify the files and add 7 zeroes to the beginning of every one. After I do this I'll be able to cat them all together. Is there an ...
-1
votes
1answer
27 views

Rename detailed information before $ in Terminal [closed]

I am using Terminal(Mac) for git. When I use it shows mySystemName-MacBook-Pro:CurrentWorkingDir mySystemName before $ sign. In my case the whole content is too long and hardly remains few space to ...
0
votes
1answer
66 views

Term::ReadKey, non-blocking read in raw mode: Detect EOF?

When I pipe stuff into my program, it does not seem to get any character like 0x4 to indicate EOF. $ echo "abc" | map 'cat' saw a: \x61 saw b: \x62 saw c: \x63 saw : \x0A zzzbc ^C I have to press ...
0
votes
1answer
69 views

Regular expression incremental parsing

Are there languages or tools that support the parsing of regexes on a character-by-character basis? I think this may be equivalent to "regexes on streams" which is something that seems to be one of ...
0
votes
1answer
89 views

Access data from terminal

I have to write a program that intercepts data from terminal and i have to parse it. After processing when the data, i have to parse it before it goes to stdout. I can't use tee or commands like prog ...
0
votes
0answers
129 views

Make Sleepwatcher daemon run on display wake - OSX 10.8.3?

I have installed Sleepwatcher using Macports on my 10.8.3 computer, following this guide pulled from this post (https://discussions.apple.com/message/17966344#17966344): MacPorts is one of the ...
1
vote
1answer
62 views

force git status to output color on the terminal (inside a script)

I like to see color because my scripting is robust enough (so far) to handle the color codes. It does seem like I'm going against the grain here, but I honestly don't see what the big deal is about ...
-1
votes
1answer
44 views

(unix/bash) Details of using “>>” with terminal? [closed]

I'm trying to understand how ">>" works. Does it use auto-append mode or lseek? I've downloaded the bash source and have been trying to grep my way through to find how it works, but I've been ...
1
vote
1answer
30 views

Can't pause nano in terminal

Trying to learn how to use terminal here. So I can use ctrl-z to pause other processes, but for some reason it does not work in nano. Why that would be?
0
votes
1answer
85 views

Sending output to tty is not producing expected results [duplicate]

I'm clearly not expecting the right results. $ man less In another terminal: $ ps u # Find that pid of less is 45783 $ lsof -p 45783 COMMAND PID USER FD TYPE DEVICE SIZE/OFF ...
0
votes
2answers
79 views

Why does this perl program not print anything out?

#!/usr/bin/env perl use Term::ReadKey; ReadMode 4; END { ReadMode 0; # Reset tty mode before exiting } while (<>) { $key = ReadKey(0); $key == "\x04" and last; # Ctrl+D breaks the ...
2
votes
1answer
46 views

Lightweight event wrapper for the terminal

I believe this is the realm of the ncurses library. I'm trying to avoid having to get down and dirty with it though. I'm looking for a program that I can configure to run a command while performing ...
0
votes
1answer
300 views

chown illegal group name (mac os x)

I'm trying to run the following command in Terminal: chown -R couchdb:couchdb /usr/local/var/log/couchdb However, I keep getting this message: chown: couchdb: illegal group name I am using mac ...
0
votes
1answer
40 views

Trying to create a string in awk, complains about division with zero

I am trying to create a script to automagically create symlinks to all my folders under a specific folder, this should ot be to hard to do but for some reason my variables are passed around really odd ...
1
vote
1answer
76 views

Control a pager (like the less program) from an extenal (parent) script

In this question I am exploring how to go about monitoring my project directory for changes so that I can keep a terminal that shows an always up-to-date git diff so that I can skip typing git diff ...
-1
votes
1answer
509 views

Sed Command get text between two string while excluding the two strings using Terminal UNIX

So I have a sed command that looks like this: sed -n "/DXImageTransform.Microsoft.AlphaImageLoader(src='/,/',sizingMethod='crop');/p" /Users/ME/Documents/weather/yahooWeather.html > ...
0
votes
2answers
154 views

(unix/C) “stty: stdin isn't a terminal” when using system() function

We're reading a file from stdin into file_buffer, and then stepping into a method more. As soon as we use system("stty cbreak -echo");, the output prints "stty: stdin isn't a terminal" and doesn't ...
0
votes
2answers
114 views

How to instantly react to key pressing in C?

I'm trying to call a function when a user presses a key, somewhat like sending a signal with Ctrl-C. The idea is to be doing something, say in a while loop, and actively listen for, say, the 'f' key ...
1
vote
0answers
54 views

Formatting SQL code in stdout in terminal

Is there any unix/linux utility that can format (indent) SQL code from stdin to stdout? I wasn't able to find any. I have special logger utility that prints SQL dumps to stdout, but it's hard to read ...
0
votes
0answers
19 views

How to use 'catdoc' to display dock file encoded in utf-8

I have a a lot of docx files and I want to read them on terminal. And I found catdoc http://www.wagner.pp.ru/~vitus/software/catdoc/ When I use it, the output are just unreadable chars. My docx ...
0
votes
1answer
45 views

Sorting with key not working

I am trying to sort entries that look like this, just formatted text data corresponding with a region, using astronomical coordinates and names for those regions. I want to organize these regions ...
0
votes
2answers
100 views

Why does stdout not flush when connecting to a process that is run with supervisord?

I am using Supervisor (process controller written in python) to start and control my web server and associated services. I find the need at times to enter into pdb (or really ipdb) to debug when the ...
0
votes
1answer
71 views

Using find and grep to Mimic findstr Command [closed]

I recently switched from a Windows development environment to an Apple development environment. The move has been a challenging process, but I'm struggling with picking up UNIX based commands in ...
0
votes
1answer
46 views

Tmux: pane title (#T) is reported as “fg” rather than something more informative

Is there a way to get Tmux to show a more informative pane name? If in a particular pane I have suspended a process and come back to it (with Zsh that's invoking it with either fg or something like ...
3
votes
3answers
106 views

Slow, word-by-word terminal printing in Python? [duplicate]

I'm writing a Python app involving a database. For the hell of it, I'm including an easter egg. If the user decides to nuke his database, all this from a terminal, he'll be prompted to confirm with a ...
0
votes
2answers
177 views

mac osx ln command: linking directories mac osx with alias or symbolic link?

I have a tool (EVEHQ) on my bootcamp windows xp installed. I'm running parallels to use the application. works great. Problem is the application has a hardwired (binary) directory path it uses to ...
0
votes
1answer
76 views

Killing Application Window with Bash/Terminal

I'm trying to close an open window in Preview by using the terminal. Everything that I have found on the internet suggests using AppleScript instead, but I cannot do such since the plist option does ...
0
votes
1answer
60 views

How to create a function in .bashrc that will work correctly when the command run by the function has spaces in it?

I have this function in ~/.bashrc for creating a permanent alias right from the terminal: function permalias () { alias "$*"; echo alias "$*" >> ~/.bashrc } The problem is it doesn't take ...
0
votes
1answer
67 views

How to transform case-sensitive script meant to list duplicate files to case-insensitive?

This script will list all the files with same filenames even when they are in different (sub)directories or have different file extensions (or no extension at all): declare -A array=() dupes=() while ...
1
vote
2answers
264 views

Replace a string in all files - Unix

I am trying to replace a string ::: with :: for all lines in a batch of txtfiles (it can be considered as a word since there's always a space in front and behind it. I can do it with python like ...
0
votes
2answers
103 views

Delete Apps from iOS Simulator using terminal

Im trying to delete apps from the iOS Simulator using this script running on our Build Server #!/bin/Bash #Go to iOS Sim cd ~/Library/Application\ Support/iPhone\ Simulator #Loop through each ...
0
votes
3answers
73 views

How can I tell if a directory from “ls” is a symlink?

I am using Mac OS X terminal. How can I tell if a directory returned by "ls" is a symlink or the actual directory? If it is a symlink, how can I inspect where it is linking to, or modify it? I ...
1
vote
2answers
97 views

“ps aux” works but “ps -aux” doesn't [closed]

This might seem like a silly question but I've never gotten an an This website states that the dash is optional in ps aux However, ps aux works but ps -aux brings up the error no user named 'x'. ...

1 2 3 4 5 6