Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[url=http://perldoc.perl.org/functions/use.html][black][b]use[/b][/black][/url] [green]strict[/green][red];[/red]
[black][b]use[/b][/black] [green]warnings[/green][red];[/red]
[url=http://perldoc.perl.org/functions/my.html][black][b]my[/b][/black][/url] [blue]$cmd[/blue]=[red]"[/red][purple]echo x.x.x.x[purple][b]\t[/b][/purple] > file.txt[/purple][red]"[/red][red];[/red]
[url=http://perldoc.perl.org/functions/print.html][black][b]print[/b][/black][/url] [red]"[/red][purple][purple][b]\$[/b][/purple]cmd = [blue]$cmd[/blue][purple][b]\n[/b][/purple][/purple][red]"[/red][red];[/red]
[gray][i]# execute command[/i][/gray]
[black][b]my[/b][/black] [blue]$rc[/blue]=[url=http://perldoc.perl.org/functions/system.html][black][b]system[/b][/black][/url][red]([/red][blue]$cmd[/blue][red])[/red][red];[/red]
[black][b]print[/b][/black] [red]"[/red][purple][purple][b]\$[/b][/purple]rc = [blue]$rc[/blue][purple][b]\n[/b][/purple][/purple][red]"[/red]
[COLOR=#ff00ff]0000000[/color][COLOR=#008080]:[/color] 782e 782e 782e 7809 200d 0a [COLOR=#804040][b] x[/b][/color].[COLOR=#804040][b]x[/b][/color].[COLOR=#804040][b]x[/b][/color].[COLOR=#804040][b]x[/b][/color].[COLOR=#804040][b] [/b][/color]..
[b]my[/b] [navy]$cmd[/navy][teal]=[/teal][green][i]"echo [highlight]'[/highlight]x.x.x.x\t[highlight]'[/highlight] > file.txt"[/i][/green][teal];[/teal]
[gray]# or[/gray]
[b]my[/b] [navy]$cmd[/navy][teal]=[/teal][green][i]"echo [highlight]\"[/highlight]x.x.x.x\t[highlight]\"[/highlight] > file.txt"[/i][/green][teal];[/teal]
[blue]master #[/blue] od -xc file.txt
0000000 2e78 2e78 2e78 0a78
x . x . x . x \n
0000010
[blue]master #[/blue] od -xc file.txt
0000000 2e78 2e78 2e78 0978 000a
x . x . x . x \t \n
0000011
$ od -xc file.txt
0000000 2e78 2e78 2e78 0978 0d20 000a
x . x . x . x \t \r \n \0
0000013
$ echo x.x.x.x | od -t x1c
0000000 78 2e 78 2e 78 2e 78 0a
x . x . x . x \n
0000010