how to use linux command in c++?


 
Thread Tools Search this Thread
Top Forums Programming how to use linux command in c++?
# 1  
Old 12-11-2011
how to use linux command in c++?

I wonder how can u use linux's command like "clear" in c++.
# 2  
Old 12-11-2011
try system("clear");
# 3  
Old 12-11-2011
thx for reply. it does work but what i actually wanna do is, i'm making a game called game of life. i wanna play the iteration on terminal but i dont know how

for example :
first generation:
- - - - -
- - * - -
- - * - -
- - * - -
- - - - -


second generation:
- - - - -
- * * * -
- - - - -
- - - - -

i wanna show the both generation on screen at a time like this picture
File:Game of life blinker.gif - Wikipedia, the free encyclopediaImage
# 4  
Old 12-11-2011
Try

Code:
int main(void)
{
        char buf[65536];
        // Fully buffered -- only writes to terminal on fflush()
        setvbuf(stdout, buf, _IOFB, 65536);

        // Clear terminal with escape codes
        printf("\x1b[H\x1b[2J");
        // print a bunch of stuff
        ...
        fflush(stdout); // make it show up on the terminal all in one go
}

Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Linux find command seems to not transmit all the result to the '-exec command'

Hello. From a script, a command for a test is use : find /home/user_install -maxdepth 1 -type f -newer /tmp/000_skel_file_deb ! -newer /tmp/000_skel_file_end -name '.bashrc' -o -name '.profile' -o -name '.gtkrc-2.0' -o -name '.i18n' -o -name '.inputrc' Tha command... (3 Replies)
Discussion started by: jcdole
3 Replies

2. UNIX for Beginners Questions & Answers

Simple sed command not working; could be a Mac/Linux vs. PC/Linux issue

Hello, I am on a Mac and trying to clean up some monthly files with a very simple SED: sed '3,10d;/<ACROSS>/,$d' input.txt > output.txt (from the input, delete lines 3 - 10; then delete from the line containing <ACROSS> to the end of the file) then output to output.txt Even when I try... (2 Replies)
Discussion started by: verbatim
2 Replies

3. Shell Programming and Scripting

Linux command needed

guys im new here and i need help with some linux commands. filea has keyword on each line identity aaa bbb ccc i have following commands. egrep 'www.identity' ~/home/m3 >~/home/lopo2 wc -l file ~/home/lopo2 say lopo2 has 44 lines then output saved is identity 44 (1 Reply)
Discussion started by: ahfze
1 Replies

4. Shell Programming and Scripting

Linux Command Error for nawk command

Hi All We are migrating our projects from unix environment to linux. I tried running a install script which sets up my project, i.e. the directory structure and all. But in the middle of the script i started receiveing following error : nawk: command not found . So i need to know which... (1 Reply)
Discussion started by: vee_789
1 Replies

5. Shell Programming and Scripting

F1 in Linux command

Hi, In my root directory i have folder1, folder2, folder3. The folder1 has folder1.1, folder1.2, folder1.3 subdirectories. Similary folder2 has folder2.1, folder2.2, folder2.3 etc. Same for rest of the folders. I have many such folders like folder4, folder5.......upto folder30 in my root... (3 Replies)
Discussion started by: keshi
3 Replies

6. UNIX for Dummies Questions & Answers

linux command

whats mean of ll -lart and ll -alrt ? (3 Replies)
Discussion started by: amol munde
3 Replies

7. UNIX for Dummies Questions & Answers

ps command on linux

Hello everyone, Simple I think? The ps command on linux seem to cut off the full command and makes grep useless, unlike Solaris. Here is an example: Solaris ps -aef|grep blue larry 7111 1 0 Mar 26 ? 0:00 xterm -fg white -bg black -cr blue -j -s -sl 100 Linux ps -aef|grep blue ... (4 Replies)
Discussion started by: larry
4 Replies
Login or Register to Ask a Question